Trait slack_morphism::clients::SlackSocketModeWssClient[][src]

pub trait SlackSocketModeWssClient {
    fn message<'life0, 'async_trait>(
        &'life0 self,
        message_body: String
    ) -> Pin<Box<dyn Future<Output = ClientResult<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn start<'life0, 'async_trait>(
        &'life0 self,
        initial_wait_timeout: u64,
        reconnect_timeout: u64
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn destroy<'life0, 'async_trait>(
        &'life0 mut self
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors