pub struct AppleAuthSession {
pub access_token: String,
pub refresh_token: Option<String>,
pub email: Option<String>,
pub name: Option<String>,
pub provider: String,
pub provider_account_id: String,
pub state: Option<String>,
}Fields§
§access_token: String§refresh_token: Option<String>§email: Option<String>§name: Option<String>§provider: String§provider_account_id: String§state: Option<String>Trait Implementations§
Source§impl Clone for AppleAuthSession
impl Clone for AppleAuthSession
Source§fn clone(&self) -> AppleAuthSession
fn clone(&self) -> AppleAuthSession
Returns a duplicate of the value. Read more
1.0.0 · 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 AppleAuthSession
impl Debug for AppleAuthSession
Source§impl<'de> Deserialize<'de> for AppleAuthSession
impl<'de> Deserialize<'de> for AppleAuthSession
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AppleAuthSession
impl RefUnwindSafe for AppleAuthSession
impl Send for AppleAuthSession
impl Sync for AppleAuthSession
impl Unpin for AppleAuthSession
impl UnsafeUnpin for AppleAuthSession
impl UnwindSafe for AppleAuthSession
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