Trait ClientManagedTokens

Source
pub trait ClientManagedTokens:
    Debug
    + Send
    + Sync {
    // Required method
    fn get_access_token<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Access tokens managed by client applications, such as the web or mobile apps.

Required Methods§

Source

fn get_access_token<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Option<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Returns the access token, if available.

Implementors§