[][src]Trait aimc_hal::System

pub trait System<In: ?Sized, Out: ?Sized> {
    fn poll(&mut self, inputs: &In, outputs: &mut Out);
}

A top-level component which will be polled at frequent intervals.

Required methods

fn poll(&mut self, inputs: &In, outputs: &mut Out)

Loading content...

Implementors

impl<F, In: ?Sized, Out: ?Sized> System<In, Out> for F where
    F: FnMut(&In, &mut Out), 
[src]

Loading content...