File tree
70 files changed
+1328
-353
lines changed- src
- attribute
- cargo
- conversion
- crates
- custom_types
- error
- multiple_error_types
- option_unwrap
- result
- flow_control
- match
- destructuring
- fn
- closures
- closure_examples
- generics
- assoc_items
- phantom
- hello
- print
- print_display
- macros
- meta
- mod
- primitives
- scope
- move
- std
- result
- std_misc
- file
- threads
- testing
- trait
- types
- unsafe
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
70 files changed
+1328
-353
lines changedSubmodule .examples-en updated 74 files
- .github/workflows/rbe.yml+10-4
- README.md+1
- book.toml+7
- src/SUMMARY.md+6-1
- src/attribute.md+2
- src/attribute/cfg.md+2
- src/cargo/conventions.md+3-3
- src/cargo/deps.md+13-8
- src/conversion/from_into.md+1-1
- src/crates/using_lib.md+1-1
- src/custom_types/enum.md+3-3
- src/custom_types/structs.md+3-2
- src/error/abort_unwind.md+51
- src/error/iter_result.md+20-1
- src/error/multiple_error_types/wrap_error.md+1-1
- src/error/option_unwrap/defaults.md+123
- src/error/option_unwrap/question_mark.md+1-1
- src/error/result/enter_question_mark.md+1-1
- src/flow_control.md+1-1
- src/flow_control/let_else.md+60
- src/flow_control/match/destructuring.md+2
- src/flow_control/match/destructuring/destructure_pointers.md+1-1
- src/flow_control/match/destructuring/destructure_slice.md+48
- src/flow_control/match/destructuring/destructure_tuple.md+2
- src/flow_control/match/guard.md+21-15
- src/fn/closures.md+16-11
- src/fn/closures/closure_examples/iter_any.md+12-4
- src/fn/closures/closure_examples/iter_find.md+9-6
- src/fn/closures/input_parameters.md+6-5
- src/fn/diverging.md+2-2
- src/fn/hof.md+1-1
- src/generics/assoc_items/types.md+1-1
- src/generics/bounds.md+2-2
- src/generics/phantom.md+9-9
- src/generics/phantom/testcase_units.md+1-1
- src/hello.md+7-7
- src/hello/comment.md+14-16
- src/hello/print.md+58-35
- src/hello/print/fmt.md+7-6
- src/hello/print/print_debug.md+3-3
- src/hello/print/print_display.md+5-6
- src/hello/print/print_display/testcase_list.md+2-1
- src/macros.md+1-1
- src/macros/dsl.md+2-2
- src/macros/variadics.md+2-2
- src/meta.md+2-2
- src/meta/doc.md+1-1
- src/meta/playground.md+4-4
- src/mod/split.md+7-7
- src/mod/struct_visibility.md+1-2
- src/primitives.md+19-19
- src/primitives/array.md+41-26
- src/primitives/literals.md+9-2
- src/primitives/tuples.md+49-50
- src/scope/lifetime.md+1-1
- src/scope/move/partial_move.md+9-2
- src/std/arc.md+11-4
- src/std/rc.md+1-1
- src/std/result/question_mark.md+1-1
- src/std/str.md+2-2
- src/std_misc/file/read_lines.md+34
- src/std_misc/fs.md+1-1
- src/std_misc/path.md+18-5
- src/std_misc/threads/testcase_mapreduce.md+6-4
- src/testing/doc_testing.md+11-9
- src/testing/integration_testing.md+6-5
- src/trait/disambiguating.md+7-5
- src/trait/impl_trait.md+2-2
- src/trait/iter.md+9-8
- src/types/alias.md+7-11
- src/types/cast.md+20-19
- src/unsafe/asm.md+443
- src/variable_bindings.md+2-1
- triagebot.toml+3
+6-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
100 | 100 |
| |
101 | 101 |
| |
102 | 102 |
| |
| 103 | + | |
103 | 104 |
| |
104 | 105 |
| |
105 | 106 |
| |
106 | 107 |
| |
107 | 108 |
| |
108 | 109 |
| |
| 110 | + | |
109 | 111 |
| |
110 | 112 |
| |
111 | 113 |
| |
| |||
315 | 317 |
| |
316 | 318 |
| |
317 | 319 |
| |
| 320 | + | |
318 | 321 |
| |
319 | 322 |
| |
320 | 323 |
| |
321 | 324 |
| |
| 325 | + | |
322 | 326 |
| |
323 | 327 |
| |
324 | 328 |
| |
| |||
423 | 427 |
| |
424 | 428 |
| |
425 | 429 |
| |
| 430 | + | |
426 | 431 |
| |
427 | 432 |
| |
428 | 433 |
| |
| |||
432 | 437 |
| |
433 | 438 |
| |
434 | 439 |
| |
435 |
| - | |
| 440 | + | |
436 | 441 |
| |
437 | 442 |
| |
438 | 443 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
| 22 | + | |
22 | 23 |
| |
23 | 24 |
| |
24 | 25 |
| |
| |||
57 | 58 |
| |
58 | 59 |
| |
59 | 60 |
| |
| 61 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
| 23 | + | |
| 24 | + | |
23 | 25 |
| |
24 | 26 |
| |
25 | 27 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 |
| - | |
42 |
| - | |
43 |
| - | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
44 | 44 |
| |
45 |
| - | |
| 45 | + | |
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
|
+15-10
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
24 |
| - | |
25 |
| - | |
26 |
| - | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
| |||
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 |
| - | |
42 |
| - | |
43 |
| - | |
44 |
| - | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
45 | 50 |
| |
46 | 51 |
| |
47 | 52 |
| |
48 |
| - | |
49 |
| - | |
| 53 | + | |
| 54 | + | |
50 | 55 |
| |
51 | 56 |
| |
52 |
| - | |
| 57 | + | |
53 | 58 |
| |
54 | 59 |
| |
55 | 60 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
87 | 87 |
| |
88 | 88 |
| |
89 | 89 |
| |
90 |
| - | |
| 90 | + | |
91 | 91 |
| |
92 | 92 |
| |
93 | 93 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
| 23 | + | |
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| |||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
24 |
| - | |
| 24 | + | |
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
| |||
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
44 |
| - | |
| 44 | + | |
45 | 45 |
| |
46 | 46 |
| |
47 | 47 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
| 22 | + | |
| 23 | + | |
| 24 | + | |
22 | 25 |
| |
23 | 26 |
| |
24 | 27 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
45 | 45 |
| |
46 | 46 |
| |
47 | 47 |
| |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
48 | 67 |
| |
49 | 68 |
| |
50 | 69 |
| |
51 | 70 |
| |
52 | 71 |
| |
53 | 72 |
| |
54 |
| - | |
| 73 | + | |
55 | 74 |
| |
56 | 75 |
| |
57 | 76 |
| |
58 |
| - | |
| 77 | + | |
59 | 78 |
| |
60 | 79 |
| |
61 | 80 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
| 13 | + | |
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
|
0 commit comments