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.