[][src]Trait msr::TimeStepController

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

A generic stateful controller with time steps

Required methods

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

Calculate the next state.

Loading content...

Implementors

impl<I, O, C> TimeStepController<I, O> for C where
    C: Controller<(I, &'a Duration), O>, 
[src]

Loading content...