[][src]Trait msr::Controller

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

A generic stateful controller

Required methods

fn next(&mut self, input: Input) -> Output

Calculate the next state.

Loading content...

Implementors

impl Controller<f64, bool> for BangBang[src]

impl<'a> Controller<(f64, &'a Duration), f64> for Pid[src]

Loading content...