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

pub trait Stateful: Sized {
    type State;
}

Trait for stateful systems.

Background:

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

Associated Types

The filter's internal state.

Implementors