Trait msr::Controller
[−]
[src]
pub trait Controller<Input, Output> {
fn next(&mut self, input: Input) -> Output;
}A generic statefull controller
Required Methods
fn next(&mut self, input: Input) -> Output
Calculate the next state.