pub trait Pipeline: Linkable {
    type IN: Send + Sync;

    fn process<'life0, 'async_trait>(
        &'life0 self,
        input: Self::IN
    ) -> Pin<Box<dyn Future<Output = Result<Self::OUT, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Associated Types

Required Methods

Implementors