[][src]Struct google_identitytoolkit3::UserInfo

pub struct UserInfo {
    pub raw_password: Option<String>,
    pub password_hash: Option<String>,
    pub local_id: Option<String>,
    pub valid_since: Option<String>,
    pub photo_url: Option<String>,
    pub last_login_at: Option<String>,
    pub custom_auth: Option<bool>,
    pub disabled: Option<bool>,
    pub password_updated_at: Option<f64>,
    pub created_at: Option<String>,
    pub display_name: Option<String>,
    pub email_verified: Option<bool>,
    pub custom_attributes: Option<String>,
    pub version: Option<i32>,
    pub phone_number: Option<String>,
    pub provider_user_info: Option<Vec<UserInfoProviderUserInfo>>,
    pub salt: Option<String>,
    pub email: Option<String>,
    pub screen_name: Option<String>,
}

Template for an individual account info.

This type is not used in any activity, and only used as part of another schema.

Fields

raw_password: Option<String>

The user's plain text password.

password_hash: Option<String>

The user's hashed password.

local_id: Option<String>

The local ID of the user.

valid_since: Option<String>

Timestamp in seconds for valid login token.

photo_url: Option<String>

The URL of the user profile photo.

last_login_at: Option<String>

last login timestamp.

custom_auth: Option<bool>

Whether the user is authenticated by the developer.

disabled: Option<bool>

Whether the user is disabled.

password_updated_at: Option<f64>

The timestamp when the password was last updated.

created_at: Option<String>

User creation timestamp.

display_name: Option<String>

The name of the user.

email_verified: Option<bool>

Whether the email has been verified.

custom_attributes: Option<String>

The custom attributes to be set in the user's id token.

version: Option<i32>

Version of the user's password.

phone_number: Option<String>

User's phone number.

provider_user_info: Option<Vec<UserInfoProviderUserInfo>>

The IDP of the user.

salt: Option<String>

The user's password salt.

email: Option<String>

The email of the user.

screen_name: Option<String>

User's screen name at Twitter or login name at Github.

Trait Implementations

impl Clone for UserInfo[src]

impl Debug for UserInfo[src]

impl Default for UserInfo[src]

impl<'de> Deserialize<'de> for UserInfo[src]

impl Part for UserInfo[src]

impl Serialize for UserInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any