pub trait State {
    // Required method
    fn run(
        &mut self,
        inputs: SmallVec<[TValue; 4]>
    ) -> Result<SmallVec<[TValue; 4]>, Error>;
}

Required Methods§

fn run( &mut self, inputs: SmallVec<[TValue; 4]> ) -> Result<SmallVec<[TValue; 4]>, Error>

Implementors§