pub struct SocialAuthorizationCodeRequest {
pub code: String,
pub code_verifier: Option<String>,
pub redirect_uri: String,
pub device_id: Option<String>,
}Fields§
§code: String§code_verifier: Option<String>§redirect_uri: String§device_id: Option<String>Trait Implementations§
Source§impl Clone for SocialAuthorizationCodeRequest
impl Clone for SocialAuthorizationCodeRequest
Source§fn clone(&self) -> SocialAuthorizationCodeRequest
fn clone(&self) -> SocialAuthorizationCodeRequest
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 Default for SocialAuthorizationCodeRequest
impl Default for SocialAuthorizationCodeRequest
Source§fn default() -> SocialAuthorizationCodeRequest
fn default() -> SocialAuthorizationCodeRequest
Returns the “default value” for a type. Read more
impl Eq for SocialAuthorizationCodeRequest
Source§impl PartialEq for SocialAuthorizationCodeRequest
impl PartialEq for SocialAuthorizationCodeRequest
Source§fn eq(&self, other: &SocialAuthorizationCodeRequest) -> bool
fn eq(&self, other: &SocialAuthorizationCodeRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SocialAuthorizationCodeRequest
Auto Trait Implementations§
impl Freeze for SocialAuthorizationCodeRequest
impl RefUnwindSafe for SocialAuthorizationCodeRequest
impl Send for SocialAuthorizationCodeRequest
impl Sync for SocialAuthorizationCodeRequest
impl Unpin for SocialAuthorizationCodeRequest
impl UnsafeUnpin for SocialAuthorizationCodeRequest
impl UnwindSafe for SocialAuthorizationCodeRequest
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