Struct fusionauth_rust_client::models::user_registration_update_complete_event::UserRegistrationUpdateCompleteEvent
source · pub struct UserRegistrationUpdateCompleteEvent {
pub application_id: Option<Uuid>,
pub original: Option<Box<UserRegistration>>,
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
UserRegistrationUpdateCompleteEvent : Models the User Update Registration Event.
This is different than user.registration.update in that it is sent after this event completes, this cannot be transactional.
Fields§
§application_id: Option<Uuid>
§original: Option<Box<UserRegistration>>
§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 UserRegistrationUpdateCompleteEvent
impl UserRegistrationUpdateCompleteEvent
sourcepub fn new() -> UserRegistrationUpdateCompleteEvent
pub fn new() -> UserRegistrationUpdateCompleteEvent
Models the User Update Registration Event.
This is different than user.registration.update in that it is sent after this event completes, this cannot be transactional.
Trait Implementations§
source§impl Clone for UserRegistrationUpdateCompleteEvent
impl Clone for UserRegistrationUpdateCompleteEvent
source§fn clone(&self) -> UserRegistrationUpdateCompleteEvent
fn clone(&self) -> UserRegistrationUpdateCompleteEvent
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 Default for UserRegistrationUpdateCompleteEvent
impl Default for UserRegistrationUpdateCompleteEvent
source§fn default() -> UserRegistrationUpdateCompleteEvent
fn default() -> UserRegistrationUpdateCompleteEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UserRegistrationUpdateCompleteEvent
impl<'de> Deserialize<'de> for UserRegistrationUpdateCompleteEvent
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 UserRegistrationUpdateCompleteEvent
impl PartialEq for UserRegistrationUpdateCompleteEvent
source§fn eq(&self, other: &UserRegistrationUpdateCompleteEvent) -> bool
fn eq(&self, other: &UserRegistrationUpdateCompleteEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UserRegistrationUpdateCompleteEvent
Auto Trait Implementations§
impl RefUnwindSafe for UserRegistrationUpdateCompleteEvent
impl Send for UserRegistrationUpdateCompleteEvent
impl Sync for UserRegistrationUpdateCompleteEvent
impl Unpin for UserRegistrationUpdateCompleteEvent
impl UnwindSafe for UserRegistrationUpdateCompleteEvent
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