pub struct UserPasswordUpdateEvent {
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
UserPasswordUpdateEvent : Models the User Password Update Event.
Fields§
§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 UserPasswordUpdateEvent
impl UserPasswordUpdateEvent
sourcepub fn new() -> UserPasswordUpdateEvent
pub fn new() -> UserPasswordUpdateEvent
Models the User Password Update Event.
Trait Implementations§
source§impl Clone for UserPasswordUpdateEvent
impl Clone for UserPasswordUpdateEvent
source§fn clone(&self) -> UserPasswordUpdateEvent
fn clone(&self) -> UserPasswordUpdateEvent
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 UserPasswordUpdateEvent
impl Debug for UserPasswordUpdateEvent
source§impl Default for UserPasswordUpdateEvent
impl Default for UserPasswordUpdateEvent
source§fn default() -> UserPasswordUpdateEvent
fn default() -> UserPasswordUpdateEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UserPasswordUpdateEvent
impl<'de> Deserialize<'de> for UserPasswordUpdateEvent
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 UserPasswordUpdateEvent
impl PartialEq for UserPasswordUpdateEvent
source§fn eq(&self, other: &UserPasswordUpdateEvent) -> bool
fn eq(&self, other: &UserPasswordUpdateEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for UserPasswordUpdateEvent
impl Serialize for UserPasswordUpdateEvent
impl StructuralPartialEq for UserPasswordUpdateEvent
Auto Trait Implementations§
impl RefUnwindSafe for UserPasswordUpdateEvent
impl Send for UserPasswordUpdateEvent
impl Sync for UserPasswordUpdateEvent
impl Unpin for UserPasswordUpdateEvent
impl UnwindSafe for UserPasswordUpdateEvent
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