Trait acto_rs::elem::source::Source [] [src]

pub trait Source {
    type OutputValue: Send;
    type OutputError: Send;
    fn process(
        &mut self,
        output: &mut Sender<Message<Self::OutputValue, Self::OutputError>>,
        stop: &mut bool
    ); }

Associated Types

Required Methods

Implementors