[−][src]Struct tame_oauth::Token
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 its 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.
Implementations
impl Token
[src]
pub fn has_expired(&self) -> bool
[src]
Returns true if we are expired.
pub fn expiry_date(&self) -> DateTime<Utc>
[src]
Returns a DateTime object representing our expiry date.
Trait Implementations
impl Clone for Token
[src]
impl Debug for Token
[src]
impl<'de> Deserialize<'de> for Token
[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<Token> for Token
[src]
impl StructuralPartialEq for Token
[src]
impl TryInto<HeaderValue> for Token
[src]
Auto Trait Implementations
impl RefUnwindSafe for Token
[src]
impl Send for Token
[src]
impl Sync for Token
[src]
impl Unpin for Token
[src]
impl UnwindSafe for Token
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,