pub trait FunctionMutTrait:
    FnMut()
    + Send
    + Sync
    + 'static { }Expand description
Trait alias for functions that can be executed in a recoverable context.
- Functions implementing this trait must satisfy FnMut() + Send + Sync + 'static.