pub trait ActivateMut<A> {
    type Cont<B>;
    // Required method
    fn activate_inplace<'a, F>(&'a mut self, f: F)
       where A: 'a,
             F: FnMut(A) -> A;
}Expand description
A trait for establishing a common mechanism to activate entities in-place.
Required Associated Types§
Required Methods§
fn activate_inplace<'a, F>(&'a mut self, f: F)where
    A: 'a,
    F: FnMut(A) -> A,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.