pub struct OAuthUserInfoRequest {
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>,
pub user: Option<OAuthCallbackUserPayload>,
}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>§user: Option<OAuthCallbackUserPayload>Trait Implementations§
Source§impl Clone for OAuthUserInfoRequest
impl Clone for OAuthUserInfoRequest
Source§fn clone(&self) -> OAuthUserInfoRequest
fn clone(&self) -> OAuthUserInfoRequest
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 OAuthUserInfoRequest
impl Debug for OAuthUserInfoRequest
Source§impl Default for OAuthUserInfoRequest
impl Default for OAuthUserInfoRequest
Source§fn default() -> OAuthUserInfoRequest
fn default() -> OAuthUserInfoRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OAuthUserInfoRequest
impl RefUnwindSafe for OAuthUserInfoRequest
impl Send for OAuthUserInfoRequest
impl Sync for OAuthUserInfoRequest
impl Unpin for OAuthUserInfoRequest
impl UnsafeUnpin for OAuthUserInfoRequest
impl UnwindSafe for OAuthUserInfoRequest
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