File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3529,13 +3529,14 @@ more of the closure traits:
35293529
35303530* ` FnMut `
35313531 : The closure can be called multiple times as mutable. A closure called as
3532- ` FnMut ` can mutate values from its environment. ` FnMut ` implies
3533- ` FnOnce ` .
3532+ ` FnMut ` can mutate values from its environment. ` FnMut ` inherits from
3533+ ` FnOnce ` (i.e. anything implementing ` FnMut ` also implements ` FnOnce ` ) .
35343534
35353535* ` Fn `
35363536 : The closure can be called multiple times through a shared reference.
35373537 A closure called as ` Fn ` can neither move out from nor mutate values
3538- from its environment. ` Fn ` implies ` FnMut ` and ` FnOnce ` .
3538+ from its environment. ` Fn ` inherits from ` FnMut ` , which itself
3539+ inherits from ` FnOnce ` .
35393540
35403541
35413542### Trait objects
You can’t perform that action at this time.
0 commit comments