Trait signalo_traits::ResetMut[][src]

pub trait ResetMut: Reset {
    fn reset_mut(&mut self);
}
Expand description

Trait for mutably resettable systems.

Background:

Resettable systems can be reset to their initial state.

Required methods

Resets the internal state.

Implementors