pub struct OAuthTokenSet {
pub token_type: Option<String>,
pub access_token: Option<String>,
pub refresh_token: Option<String>,
pub access_token_expires_at: Option<DateTime<Utc>>,
pub refresh_token_expires_at: Option<DateTime<Utc>>,
pub scopes: Vec<String>,
pub id_token: Option<String>,
pub raw: Option<Value>,
}Fields§
§token_type: Option<String>§access_token: Option<String>§refresh_token: Option<String>§access_token_expires_at: Option<DateTime<Utc>>§refresh_token_expires_at: Option<DateTime<Utc>>§scopes: Vec<String>§id_token: Option<String>§raw: Option<Value>Trait Implementations§
Source§impl Clone for OAuthTokenSet
impl Clone for OAuthTokenSet
Source§fn clone(&self) -> OAuthTokenSet
fn clone(&self) -> OAuthTokenSet
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OAuthTokenSet
impl Debug for OAuthTokenSet
Source§impl Default for OAuthTokenSet
impl Default for OAuthTokenSet
Source§fn default() -> OAuthTokenSet
fn default() -> OAuthTokenSet
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OAuthTokenSet
impl RefUnwindSafe for OAuthTokenSet
impl Send for OAuthTokenSet
impl Sync for OAuthTokenSet
impl Unpin for OAuthTokenSet
impl UnsafeUnpin for OAuthTokenSet
impl UnwindSafe for OAuthTokenSet
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more