Skip to main content

OAuthTokenVerifier

Trait OAuthTokenVerifier 

Source
pub trait OAuthTokenVerifier: Send + Sync {
    // Required method
    fn verify<'a>(
        &'a self,
        token: &'a str,
    ) -> Pin<Box<dyn Future<Output = Result<(), KontextDevError>> + Send + 'a>>;
}

Required Methods§

Source

fn verify<'a>( &'a self, token: &'a str, ) -> Pin<Box<dyn Future<Output = Result<(), KontextDevError>> + Send + 'a>>

Implementors§