pub struct UserPasswordUpdateEvent {
pub user: Option<Box<User>>,
}
Expand description
UserPasswordUpdateEvent : Models the User Password Update Event.
Fields§
§user: Option<Box<User>>
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 duplicate 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§impl Serialize for UserPasswordUpdateEvent
impl Serialize for UserPasswordUpdateEvent
impl StructuralPartialEq for UserPasswordUpdateEvent
Auto Trait Implementations§
impl Freeze for UserPasswordUpdateEvent
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