pub struct AuthenticationMagicAuthSucceededData {
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 AuthenticationMagicAuthSucceededData
impl Clone for AuthenticationMagicAuthSucceededData
Source§fn clone(&self) -> AuthenticationMagicAuthSucceededData
fn clone(&self) -> AuthenticationMagicAuthSucceededData
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 AuthenticationMagicAuthSucceededData
impl<'de> Deserialize<'de> for AuthenticationMagicAuthSucceededData
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 AuthenticationMagicAuthSucceededData
impl RefUnwindSafe for AuthenticationMagicAuthSucceededData
impl Send for AuthenticationMagicAuthSucceededData
impl Sync for AuthenticationMagicAuthSucceededData
impl Unpin for AuthenticationMagicAuthSucceededData
impl UnsafeUnpin for AuthenticationMagicAuthSucceededData
impl UnwindSafe for AuthenticationMagicAuthSucceededData
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