Trait acto_rs::elem::sink::Sink [] [src]

pub trait Sink {
    type InputValue: Send;
    type InputError: Send;
    fn process(
        &mut self,
        input: &mut ChannelWrapper<Self::InputValue, Self::InputError>,
        stop: &mut bool
    ); }

Associated Types

Required Methods

Implementors