File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ f(Closure{s: s, t: &t});
49
49
50
50
The compiler prefers to capture a closed-over variable by immutable borrow,
51
51
followed by unique immutable borrow (see below), by mutable borrow, and finally
52
- by move. It will pick the first choice of these that allows the closure to
53
- compile. The choice is made only with regards to the contents of the closure
54
- expression; the compiler does not take into account surrounding code, such as
55
- the lifetimes of involved variables .
52
+ by move. It will pick the first choice of these that is compatible with how the
53
+ captured variable is used inside the closure body. The compiler does not take
54
+ surrounding code into account, such as the lifetimes of involved variables, or
55
+ of the closure itself .
56
56
57
57
If the ` move ` keyword is used, then all captures are by move or, for ` Copy `
58
58
types, by copy, regardless of whether a borrow would work. The ` move ` keyword is
You can’t perform that action at this time.
0 commit comments