Trait chewdata::connector::authenticator::Authenticator

source ·
pub trait Authenticator: Sync + Send {
    // Required method
    fn authenticate<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<(Vec<u8>, Vec<u8>)>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn authenticate<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(Vec<u8>, Vec<u8>)>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§