pub struct EmailChangeConfirmationUser {Show 14 fields
pub object: String,
pub id: String,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub name: Option<String>,
pub profile_picture_url: Option<String>,
pub email: String,
pub email_verified: bool,
pub external_id: Option<String>,
pub metadata: Option<HashMap<String, String>>,
pub last_sign_in_at: Option<String>,
pub locale: Option<String>,
pub created_at: String,
pub updated_at: String,
}Expand description
The user object.
Fields§
§object: StringDistinguishes the user object.
id: StringThe unique ID of the user.
first_name: Option<String>The first name of the user.
last_name: Option<String>The last name of the user.
name: Option<String>The user’s full name.
profile_picture_url: Option<String>A URL reference to an image representing the user.
email: StringThe email address of the user.
email_verified: boolWhether the user’s email has been verified.
external_id: Option<String>The external ID of the user.
metadata: Option<HashMap<String, String>>Object containing metadata key/value pairs associated with the user.
last_sign_in_at: Option<String>The timestamp when the user last signed in.
locale: Option<String>The user’s preferred locale.
created_at: StringAn ISO 8601 timestamp.
updated_at: StringAn ISO 8601 timestamp.
Trait Implementations§
Source§impl Clone for EmailChangeConfirmationUser
impl Clone for EmailChangeConfirmationUser
Source§fn clone(&self) -> EmailChangeConfirmationUser
fn clone(&self) -> EmailChangeConfirmationUser
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmailChangeConfirmationUser
impl Debug for EmailChangeConfirmationUser
Source§impl<'de> Deserialize<'de> for EmailChangeConfirmationUser
impl<'de> Deserialize<'de> for EmailChangeConfirmationUser
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 EmailChangeConfirmationUser
impl RefUnwindSafe for EmailChangeConfirmationUser
impl Send for EmailChangeConfirmationUser
impl Sync for EmailChangeConfirmationUser
impl Unpin for EmailChangeConfirmationUser
impl UnsafeUnpin for EmailChangeConfirmationUser
impl UnwindSafe for EmailChangeConfirmationUser
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