pub struct AuthenticationCodeTypeFirebaseAndroid {
pub nonce: String,
pub length: i32,
}
Expand description
A digit-only authentication code is delivered via Firebase Authentication to the official Android application
Fields§
§nonce: String
Nonce to pass to the SafetyNet Attestation API
length: i32
Length of the code
Trait Implementations§
Source§impl Clone for AuthenticationCodeTypeFirebaseAndroid
impl Clone for AuthenticationCodeTypeFirebaseAndroid
Source§fn clone(&self) -> AuthenticationCodeTypeFirebaseAndroid
fn clone(&self) -> AuthenticationCodeTypeFirebaseAndroid
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 AuthenticationCodeTypeFirebaseAndroid
impl Default for AuthenticationCodeTypeFirebaseAndroid
Source§fn default() -> AuthenticationCodeTypeFirebaseAndroid
fn default() -> AuthenticationCodeTypeFirebaseAndroid
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticationCodeTypeFirebaseAndroid
impl<'de> Deserialize<'de> for AuthenticationCodeTypeFirebaseAndroid
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 AuthenticationCodeTypeFirebaseAndroid
impl PartialEq for AuthenticationCodeTypeFirebaseAndroid
Source§fn eq(&self, other: &AuthenticationCodeTypeFirebaseAndroid) -> bool
fn eq(&self, other: &AuthenticationCodeTypeFirebaseAndroid) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuthenticationCodeTypeFirebaseAndroid
Auto Trait Implementations§
impl Freeze for AuthenticationCodeTypeFirebaseAndroid
impl RefUnwindSafe for AuthenticationCodeTypeFirebaseAndroid
impl Send for AuthenticationCodeTypeFirebaseAndroid
impl Sync for AuthenticationCodeTypeFirebaseAndroid
impl Unpin for AuthenticationCodeTypeFirebaseAndroid
impl UnwindSafe for AuthenticationCodeTypeFirebaseAndroid
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