pub struct SocialIdTokenRequest {
pub token: String,
pub nonce: Option<String>,
pub access_token: Option<String>,
pub refresh_token: Option<String>,
pub scopes: Vec<String>,
pub provider_user: Option<Value>,
}Fields§
§token: String§nonce: Option<String>§access_token: Option<String>§refresh_token: Option<String>§scopes: Vec<String>§provider_user: Option<Value>Trait Implementations§
Source§impl Clone for SocialIdTokenRequest
impl Clone for SocialIdTokenRequest
Source§fn clone(&self) -> SocialIdTokenRequest
fn clone(&self) -> SocialIdTokenRequest
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 SocialIdTokenRequest
impl Debug for SocialIdTokenRequest
Source§impl Default for SocialIdTokenRequest
impl Default for SocialIdTokenRequest
Source§fn default() -> SocialIdTokenRequest
fn default() -> SocialIdTokenRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for SocialIdTokenRequest
impl PartialEq for SocialIdTokenRequest
Source§fn eq(&self, other: &SocialIdTokenRequest) -> bool
fn eq(&self, other: &SocialIdTokenRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SocialIdTokenRequest
Auto Trait Implementations§
impl Freeze for SocialIdTokenRequest
impl RefUnwindSafe for SocialIdTokenRequest
impl Send for SocialIdTokenRequest
impl Sync for SocialIdTokenRequest
impl Unpin for SocialIdTokenRequest
impl UnsafeUnpin for SocialIdTokenRequest
impl UnwindSafe for SocialIdTokenRequest
Blanket Implementations§
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