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§
Trait Implementations§
Source§impl<T> FfiConverterArc<T> for dyn ClientManagedTokens
impl<T> FfiConverterArc<T> for dyn ClientManagedTokens
Source§impl<T> LiftRef<T> for dyn ClientManagedTokens
impl<T> LiftRef<T> for dyn ClientManagedTokens
type LiftType = Arc<dyn ClientManagedTokens>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".