pub trait Simulink {
    fn initialize(&mut self);
    fn __step__(&self);
    fn terminate(&self);
}

Required Methods

Implementors