pub trait HyperAuthenticator: Send + Sync + Clone + Sized {
    fn auth<'life0, 'async_trait>(
        &'life0 self,
        knock: Knock
    ) -> Pin<Box<dyn Future<Output = Result<HyperwayStub, SpaceErr>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors