Struct tame_oidc::oidc::Token[][src]

pub struct Token {
    pub access_token: String,
    pub token_type: String,
    pub expires_in: i64,
    pub expires_in_timestamp: i64,
    pub scope: String,
    pub id_token: Option<String>,
    pub refresh_token: Option<String>,
}

This is the schema of the server’s response.

Fields

access_token: String

The actual token

token_type: String

The token type - most often bearer

expires_in: i64

The time until the token expires and a new one needs to be requested

expires_in_timestamp: i64

The time until the token expires and a new one needs to be requested

scope: String

The scope used for this token - most often openid

id_token: Option<String>

A JSON Web Token that contains information about an authentication event and claims about the authenticated user.

refresh_token: Option<String>

An opaque refresh token. This is returned if the offline_access scope is granted.

Implementations

impl Token[src]

pub fn from_response<S>(response: Response<S>) -> Result<Self, Error> where
    S: AsRef<[u8]>, 
[src]

Once a response has been received for a token request, call this method to deserialize the token and store it in the cache so that future API requests don’t have to retrieve a new token, until it expires.

Trait Implementations

impl Clone for Token[src]

impl Debug for Token[src]

impl PartialEq<Token> for Token[src]

impl StructuralPartialEq for Token[src]

Auto Trait Implementations

impl RefUnwindSafe for Token

impl Send for Token

impl Sync for Token

impl Unpin for Token

impl UnwindSafe for Token

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.