pub trait OauthTokenVerifier: Send + Sync {
// Required method
fn verify_token<'life0, 'async_trait>(
&'life0 self,
access_token: String,
) -> Pin<Box<dyn Future<Output = Result<AuthInfo, AuthenticationError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}