pub trait CreateSession: XrpcClient {
    // Provided method
    fn create_session<'life0, 'async_trait>(
        &'life0 self,
        input: Input
    ) -> Pin<Box<dyn Future<Output = Result<Output, Box<dyn Error>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

com.atproto.server.createSession Create an authentication session.

Provided Methods§

source

fn create_session<'life0, 'async_trait>( &'life0 self, input: Input ) -> Pin<Box<dyn Future<Output = Result<Output, Box<dyn Error>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§