pub struct AccountInfoUser {
pub local_id: Option<String>,
pub display_name: Option<String>,
pub photo_url: Option<String>,
pub email: Option<String>,
pub email_verified: Option<bool>,
pub phone_number: Option<String>,
pub provider_user_info: Option<Vec<ProviderUserInfo>>,
pub mfa_info: Option<Vec<MfaEnrollmentInfo>>,
}Fields§
§local_id: Option<String>§display_name: Option<String>§photo_url: Option<String>§email: Option<String>§email_verified: Option<bool>§phone_number: Option<String>§provider_user_info: Option<Vec<ProviderUserInfo>>§mfa_info: Option<Vec<MfaEnrollmentInfo>>Trait Implementations§
Source§impl Clone for AccountInfoUser
impl Clone for AccountInfoUser
Source§fn clone(&self) -> AccountInfoUser
fn clone(&self) -> AccountInfoUser
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 AccountInfoUser
impl Debug for AccountInfoUser
Source§impl<'de> Deserialize<'de> for AccountInfoUser
impl<'de> Deserialize<'de> for AccountInfoUser
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 AccountInfoUser
impl RefUnwindSafe for AccountInfoUser
impl Send for AccountInfoUser
impl Sync for AccountInfoUser
impl Unpin for AccountInfoUser
impl UnwindSafe for AccountInfoUser
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