Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The captured values are moved when the closure is called, not when it's constructed #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion closures.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,8 @@ by the compiler, no annotation is necessary). If a variable is moved into a
closure, i.e., it is captured by value (either because of an explicit `move` or
due to inference), then the closure will have a `FnOnce` type. It would be unsafe
to call such a closure multiple times because the captured variable would be
moved more than once.
moved more than once; this is because the moving happens at the time the closure
is called, not at the time the closure is constructed.

Rust will do its best to infer the most flexible type for the closure if it can.

Expand Down