pub trait Token<L: Lifetime>: FromResponse {
// Required methods
fn access_token(&self) -> &str;
fn scope(&self) -> Option<&str>;
fn lifetime(&self) -> &L;
}
Expand description
OAuth 2.0 tokens.
See RFC 6749, section 5.
Required Methods§
Sourcefn access_token(&self) -> &str
fn access_token(&self) -> &str
Returns the access token.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.