Trait rustfbp::component::ComponentRun [] [src]

pub trait ComponentRun: Send {
    fn run(&mut self);
}

Allows to run a component once

Required Methods

fn run(&mut self)

Runs the component once. It read and write on the input and output ports.

Implementors