pub trait SocketSend {
    fn send<'life0, 'async_trait>(
        &'life0 mut self,
        message: ZmqMessage
    ) -> Pin<Box<dyn Future<Output = ZmqResult<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors