Trait StreamPipeline

Source
pub trait StreamPipeline:
    Send
    + Sync
    + 'static {
    // Provided method
    fn handle_connect<'life0, 'life1, 'async_trait>(
        &'life0 self,
        ctx: &'life1 mut StreamContext,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait { ... }
}

Provided Methods§

Source

fn handle_connect<'life0, 'life1, 'async_trait>( &'life0 self, ctx: &'life1 mut StreamContext, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§