pub struct DeviceTokenSocialData {
pub device_token: String,
pub device_encryption_key: Option<String>,
}Expand description
data payload for a social sign-in device-token response.
Fields§
§device_token: StringShort-lived device token for the Circle mobile SDK.
device_encryption_key: Option<String>Encryption key paired with the device token.
Trait Implementations§
Source§impl Clone for DeviceTokenSocialData
impl Clone for DeviceTokenSocialData
Source§fn clone(&self) -> DeviceTokenSocialData
fn clone(&self) -> DeviceTokenSocialData
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 DeviceTokenSocialData
impl Debug for DeviceTokenSocialData
Source§impl<'de> Deserialize<'de> for DeviceTokenSocialData
impl<'de> Deserialize<'de> for DeviceTokenSocialData
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 DeviceTokenSocialData
impl RefUnwindSafe for DeviceTokenSocialData
impl Send for DeviceTokenSocialData
impl Sync for DeviceTokenSocialData
impl Unpin for DeviceTokenSocialData
impl UnsafeUnpin for DeviceTokenSocialData
impl UnwindSafe for DeviceTokenSocialData
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