Trait amadeus_core::Destination[][src]

pub trait Destination: Clone + Debug {
    type Item;
    type Error: Error;
    type ParSink: ParallelSink<Self::Item>;
    type DistSink: DistributedSink<Self::Item>;
    fn par_sink(self) -> Self::ParSink;
fn dist_sink(self) -> Self::DistSink; }

Associated Types

Required methods

fn par_sink(self) -> Self::ParSink[src]

fn dist_sink(self) -> Self::DistSink[src]

Implementors