pub trait ConnectionStateWriteExt: StateWrite {
    // Provided methods
    fn put_connection_counter(&mut self, counter: ConnectionCounter) { ... }
    fn put_client_connection(
        &mut self,
        client_id: &ClientId,
        paths: ClientPaths,
    ) { ... }
    fn put_new_connection<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        connection_id: &'life1 ConnectionId,
        connection: ConnectionEnd,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: Send + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait { ... }
    fn update_connection(
        &mut self,
        connection_id: &ConnectionId,
        connection: ConnectionEnd,
    ) { ... }
}
Available on crate feature component only.

Provided Methods§

source

fn put_connection_counter(&mut self, counter: ConnectionCounter)

source

fn put_client_connection(&mut self, client_id: &ClientId, paths: ClientPaths)

source

fn put_new_connection<'life0, 'life1, 'async_trait>( &'life0 mut self, connection_id: &'life1 ConnectionId, connection: ConnectionEnd, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn update_connection( &mut self, connection_id: &ConnectionId, connection: ConnectionEnd, )

Object Safety§

This trait is not object safe.

Implementors§