[][src]Struct yup_oauth2::Token

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

Represents a token as returned by OAuth2 servers.

It is produced by all authentication flows. It authenticates certain operations, and must be refreshed once it reached it's expiry date.

The type is tuned to be suitable for direct de-serialization from server replies, as well as for serialization for later reuse. This is the reason for the two fields dealing with expiry - once in relative in and once in absolute terms.

Utility methods make common queries easier, see expired().

Fields

access_token: String

used when authenticating calls to oauth2 enabled services.

refresh_token: String

used to refresh an expired access_token.

token_type: String

The token type as string - usually 'Bearer'.

expires_in: Option<i64>

access_token will expire after this amount of time. Prefer using expiry_date()

expires_in_timestamp: Option<i64>

timestamp is seconds since epoch indicating when the token will expire in absolute terms. use expiry_date() to convert to DateTime.

Methods

impl Token[src]

pub fn expired(&self) -> bool[src]

Returns true if we are expired.

Panics

  • if our access_token is unset

pub fn expiry_date(&self) -> DateTime<Utc>[src]

Returns a DateTime object representing our expiry date.

pub fn set_expiry_absolute(&mut self) -> &mut Token[src]

Adjust our stored expiry format to be absolute, using the current time.

Trait Implementations

impl Clone for Token[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Token> for Token[src]

impl Debug for Token[src]

impl Serialize for Token[src]

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

Auto Trait Implementations

impl Send for Token

impl Sync for Token

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.