pub trait WithAuthExt {
    // Required method
    fn with_auth<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<Self, Error>> + Send + 'async_trait>>
       where Self: Sized + 'async_trait;
}

Required Methods§

source

fn with_auth<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<Self, Error>> + Send + 'async_trait>>where Self: Sized + 'async_trait,

Implementors§