Trait signalo_filters::traits::Stateful [] [src]

pub trait Stateful {
    fn reset(&mut self);
}

Trait for stateful systems.

Background:

Stateful systems can react to the same input differently depending on the current state.

Required Methods

Resets the current state of self.

Implementors