Struct openid::Bearer[][src]

pub struct Bearer {
    pub access_token: String,
    pub scope: Option<String>,
    pub refresh_token: Option<String>,
    pub expires: Option<DateTime<Utc>>,
    pub id_token: Option<String>,
}

The bearer token type.

See RFC 6750.

Fields

access_token: Stringscope: Option<String>refresh_token: Option<String>expires: Option<DateTime<Utc>>id_token: Option<String>

Implementations

impl Bearer[src]

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

Trait Implementations

impl Clone for Bearer[src]

impl Debug for Bearer[src]

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

impl Eq for Bearer[src]

impl<C: CompactJson + Claims> From<Bearer> for Token<C>[src]

impl PartialEq<Bearer> for Bearer[src]

impl Serialize for Bearer[src]

impl StructuralEq for Bearer[src]

impl StructuralPartialEq for Bearer[src]

Auto Trait Implementations

impl RefUnwindSafe for Bearer

impl Send for Bearer

impl Sync for Bearer

impl Unpin for Bearer

impl UnwindSafe for Bearer

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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> 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.