pub trait Stop: Sized {
    fn stop(state: Option<&mut dyn State>) -> bool;

    fn drop(&mut self) { ... }
}

Required Methods

Provided Methods

Implementors