Struct glimesh::AccessToken[][src]

pub struct AccessToken {
    pub access_token: String,
    pub refresh_token: Option<String>,
    pub created_at: DateTime<Utc>,
    pub expires_in: i64,
    pub scope: Option<String>,
    pub token_type: String,
}

Stored information about the access token

Fields

access_token: String

Glimesh access token

refresh_token: Option<String>

Glimesh refresh token

created_at: DateTime<Utc>

Time the token was created

expires_in: i64

Seconds after the created_at time when the token expires.

scope: Option<String>

Space separated list of scopes the token has permission for.

token_type: String

Type of the token, usually bearer

Trait Implementations

impl Clone for AccessToken[src]

impl Debug for AccessToken[src]

impl<'de> Deserialize<'de> for AccessToken[src]

impl Serialize for AccessToken[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,