tcplane

Trait FunctionMutTrait

Source
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.

Implementors§

Source§

impl<T> FunctionMutTrait for T
where T: FnMut() + Send + Sync + 'static,