pub enum FirebaseAuthenticationSettings {
Android,
Ios(FirebaseAuthenticationSettingsIos),
}
Variants§
Android
Settings for Firebase Authentication in the official Android application
Ios(FirebaseAuthenticationSettingsIos)
Settings for Firebase Authentication in the official iOS application
Trait Implementations§
Source§impl Clone for FirebaseAuthenticationSettings
impl Clone for FirebaseAuthenticationSettings
Source§fn clone(&self) -> FirebaseAuthenticationSettings
fn clone(&self) -> FirebaseAuthenticationSettings
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<'de> Deserialize<'de> for FirebaseAuthenticationSettings
impl<'de> Deserialize<'de> for FirebaseAuthenticationSettings
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 FirebaseAuthenticationSettings
impl PartialEq for FirebaseAuthenticationSettings
Source§fn eq(&self, other: &FirebaseAuthenticationSettings) -> bool
fn eq(&self, other: &FirebaseAuthenticationSettings) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FirebaseAuthenticationSettings
Auto Trait Implementations§
impl Freeze for FirebaseAuthenticationSettings
impl RefUnwindSafe for FirebaseAuthenticationSettings
impl Send for FirebaseAuthenticationSettings
impl Sync for FirebaseAuthenticationSettings
impl Unpin for FirebaseAuthenticationSettings
impl UnwindSafe for FirebaseAuthenticationSettings
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