File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,11 @@ fn main() {
30
30
There are some concepts used in the previous code that haven't been explained
31
31
yet, here's a brief explanation for the impatient readers:
32
32
33
- * ` fun(&foo) ` is used to pass an argument to a function * by reference* , rather
34
- than by value (` fun(foo) ` ). For more details see [ borrowing] [ borrow ] .
35
33
* ` std::mem::size_of_val ` is a function, but called with its * full path* . Code
36
34
can be split in logical units called * modules* . In this case, the
37
35
` size_of_val ` function is defined in the ` mem ` module, and the ` mem ` module
38
36
is defined in the ` std ` * crate* . For more details, see
39
37
[ modules] [ mod ] and [ crates] [ crate ] .
40
38
41
- [ borrow ] : ../scope/borrow.md
42
39
[ mod ] : ../mod.md
43
40
[ crate ] : ../crates.md
You can’t perform that action at this time.
0 commit comments