You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
&: means a closure by reference, i.e. the variables that are closed over are passed by reference. &mut: is the same, but they're now mutable. move means that all variables are actually moved into the closure.
The closure syntax uses a mysterious sigil
&:
which isn't explained.The text was updated successfully, but these errors were encountered: