(no title)
andy_xor_andrew | 1 month ago
It will automatically implement the most general, relaxed version (FnMut I think?) and only restrict itself further to FnOnce and Fn based on what you do inside the closure.
So, it can be tricky to know what's going on, and making a code change can change the contract of the closure and therefore where and how it can be used.
(I invite rust experts to correct me if any of the above is mistaken - I always forget the order of precedence for FnOnce/Fn/FnMut and which implies which)
bobbylarrybobby|1 month ago
umanwizard|1 month ago
The least restrictive for the function itself is the opposite order: FnOnce (it can do anything to its environment, including possibly consuming things without putting them back into a consistent state), followed by FnMut (it has exclusive access to its environment, and so is allowed to mutate it, but not destroy it), followed by Fn (it has only shared access to its environment and therefore is not allowed to mutate it).
Since these orders are inverses of each other, functions that are easier to write are harder to call and vice versa. That’s why they implement the trait with the minimum amount of power possible, so that they can be called in more places.
yoshuaw|1 month ago
The way I remember the ordering is by thinking about the restrictions the various Fn traits provide from a caller's perspective:
So going from most to least restrictive gives you `FnMut: FnOnce` and `Fn: FnMut`.umanwizard|1 month ago
It’s more precise to say that Fn can be called even when you only have shared access to it, which is a necessary, but not sufficient, condition for being able to be called concurrently.
csomar|1 month ago
krukah|1 month ago
FnOnce
FnMut
Fn
KolmogorovComp|1 month ago
gpm|1 month ago
unknown|1 month ago
[deleted]