pub trait SocketMessageSend<'a, T>where
    T: Send + Debug + 'a,
{ fn send<'b, 'life0, 'async_trait>(
        &'life0 self,
        msg: T
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
    where
        T: 'b,
        Self: 'async_trait,
        'b: 'async_trait,
        'life0: 'async_trait
; }

Required Methods§

Implementors§