Struct fusionauth_rust_client::models::user_registration_create_event::UserRegistrationCreateEvent
source · pub struct UserRegistrationCreateEvent {
pub application_id: Option<Uuid>,
pub registration: Option<Box<UserRegistration>>,
pub user: Option<Box<User>>,
pub create_instant: Option<i64>,
pub id: Option<Uuid>,
pub info: Option<Box<EventInfo>>,
pub tenant_id: Option<Uuid>,
pub type: Option<EventType>,
}
Expand description
UserRegistrationCreateEvent : Models the User Create Registration Event.
Fields§
§application_id: Option<Uuid>
§registration: Option<Box<UserRegistration>>
§user: Option<Box<User>>
§create_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
id: Option<Uuid>
§info: Option<Box<EventInfo>>
§tenant_id: Option<Uuid>
§type: Option<EventType>
Implementations§
source§impl UserRegistrationCreateEvent
impl UserRegistrationCreateEvent
sourcepub fn new() -> UserRegistrationCreateEvent
pub fn new() -> UserRegistrationCreateEvent
Models the User Create Registration Event.
Trait Implementations§
source§impl Clone for UserRegistrationCreateEvent
impl Clone for UserRegistrationCreateEvent
source§fn clone(&self) -> UserRegistrationCreateEvent
fn clone(&self) -> UserRegistrationCreateEvent
Returns a copy 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 UserRegistrationCreateEvent
impl Debug for UserRegistrationCreateEvent
source§impl Default for UserRegistrationCreateEvent
impl Default for UserRegistrationCreateEvent
source§fn default() -> UserRegistrationCreateEvent
fn default() -> UserRegistrationCreateEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UserRegistrationCreateEvent
impl<'de> Deserialize<'de> for UserRegistrationCreateEvent
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
source§impl PartialEq for UserRegistrationCreateEvent
impl PartialEq for UserRegistrationCreateEvent
source§fn eq(&self, other: &UserRegistrationCreateEvent) -> bool
fn eq(&self, other: &UserRegistrationCreateEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UserRegistrationCreateEvent
Auto Trait Implementations§
impl RefUnwindSafe for UserRegistrationCreateEvent
impl Send for UserRegistrationCreateEvent
impl Sync for UserRegistrationCreateEvent
impl Unpin for UserRegistrationCreateEvent
impl UnwindSafe for UserRegistrationCreateEvent
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