pub struct AuthenticationReauthenticationSucceededData {
pub type_: String,
pub status: String,
pub ip_address: Option<String>,
pub user_agent: Option<String>,
pub user_id: String,
pub email: String,
}Expand description
The event payload.
Fields§
§type_: String§status: String§ip_address: Option<String>The IP address of the request.
user_agent: Option<String>The user agent of the request.
user_id: StringThe ID of the user.
email: StringThe email address of the user.
Trait Implementations§
Source§impl Clone for AuthenticationReauthenticationSucceededData
impl Clone for AuthenticationReauthenticationSucceededData
Source§fn clone(&self) -> AuthenticationReauthenticationSucceededData
fn clone(&self) -> AuthenticationReauthenticationSucceededData
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<'de> Deserialize<'de> for AuthenticationReauthenticationSucceededData
impl<'de> Deserialize<'de> for AuthenticationReauthenticationSucceededData
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 AuthenticationReauthenticationSucceededData
impl RefUnwindSafe for AuthenticationReauthenticationSucceededData
impl Send for AuthenticationReauthenticationSucceededData
impl Sync for AuthenticationReauthenticationSucceededData
impl Unpin for AuthenticationReauthenticationSucceededData
impl UnsafeUnpin for AuthenticationReauthenticationSucceededData
impl UnwindSafe for AuthenticationReauthenticationSucceededData
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