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() {
3030There are some concepts used in the previous code that haven't been explained
3131yet, here's a brief explanation for the impatient readers:
3232
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 ] .
3533* ` std::mem::size_of_val ` is a function, but called with its * full path* . Code
3634 can be split in logical units called * modules* . In this case, the
3735 ` size_of_val ` function is defined in the ` mem ` module, and the ` mem ` module
3836 is defined in the ` std ` * crate* . For more details, see
3937 [ modules] [ mod ] and [ crates] [ crate ] .
4038
41- [ borrow ] : ../scope/borrow.md
4239[ mod ] : ../mod.md
4340[ crate ] : ../crates.md
You can’t perform that action at this time.
0 commit comments