pub struct EmailAddressAuthenticationAppleId {
pub token: String,
}
Expand description
An authentication token received through Apple ID
Fields§
§token: String
The token
Trait Implementations§
Source§impl Clone for EmailAddressAuthenticationAppleId
impl Clone for EmailAddressAuthenticationAppleId
Source§fn clone(&self) -> EmailAddressAuthenticationAppleId
fn clone(&self) -> EmailAddressAuthenticationAppleId
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 Default for EmailAddressAuthenticationAppleId
impl Default for EmailAddressAuthenticationAppleId
Source§fn default() -> EmailAddressAuthenticationAppleId
fn default() -> EmailAddressAuthenticationAppleId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailAddressAuthenticationAppleId
impl<'de> Deserialize<'de> for EmailAddressAuthenticationAppleId
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
Source§impl PartialEq for EmailAddressAuthenticationAppleId
impl PartialEq for EmailAddressAuthenticationAppleId
Source§fn eq(&self, other: &EmailAddressAuthenticationAppleId) -> bool
fn eq(&self, other: &EmailAddressAuthenticationAppleId) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EmailAddressAuthenticationAppleId
Auto Trait Implementations§
impl Freeze for EmailAddressAuthenticationAppleId
impl RefUnwindSafe for EmailAddressAuthenticationAppleId
impl Send for EmailAddressAuthenticationAppleId
impl Sync for EmailAddressAuthenticationAppleId
impl Unpin for EmailAddressAuthenticationAppleId
impl UnwindSafe for EmailAddressAuthenticationAppleId
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