pub struct FirebaseAuthenticationSettingsIos {
pub device_token: String,
pub is_app_sandbox: bool,
}
Expand description
Settings for Firebase Authentication in the official iOS application
Fields§
§device_token: String
Device token from Apple Push Notification service
is_app_sandbox: bool
True, if App Sandbox is enabled
Trait Implementations§
Source§impl Clone for FirebaseAuthenticationSettingsIos
impl Clone for FirebaseAuthenticationSettingsIos
Source§fn clone(&self) -> FirebaseAuthenticationSettingsIos
fn clone(&self) -> FirebaseAuthenticationSettingsIos
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 FirebaseAuthenticationSettingsIos
impl Default for FirebaseAuthenticationSettingsIos
Source§fn default() -> FirebaseAuthenticationSettingsIos
fn default() -> FirebaseAuthenticationSettingsIos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FirebaseAuthenticationSettingsIos
impl<'de> Deserialize<'de> for FirebaseAuthenticationSettingsIos
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 FirebaseAuthenticationSettingsIos
impl PartialEq for FirebaseAuthenticationSettingsIos
Source§fn eq(&self, other: &FirebaseAuthenticationSettingsIos) -> bool
fn eq(&self, other: &FirebaseAuthenticationSettingsIos) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FirebaseAuthenticationSettingsIos
Auto Trait Implementations§
impl Freeze for FirebaseAuthenticationSettingsIos
impl RefUnwindSafe for FirebaseAuthenticationSettingsIos
impl Send for FirebaseAuthenticationSettingsIos
impl Sync for FirebaseAuthenticationSettingsIos
impl Unpin for FirebaseAuthenticationSettingsIos
impl UnwindSafe for FirebaseAuthenticationSettingsIos
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