Trait msr::Controller [] [src]

pub trait Controller<Input, Output> {
    fn next(&mut self, input: Input) -> Output;
}

A generic statefull controller

Required Methods

Calculate the next state.

Implementors