pub struct UserCreateCompleteEvent {
pub user: Option<Box<User>>,
}
Expand description
UserCreateCompleteEvent : Models the User Created Event.
This is different than the user.create event in that it will be sent after the user has been created. This event cannot be made transactional.
Fields§
§user: Option<Box<User>>
Implementations§
Source§impl UserCreateCompleteEvent
impl UserCreateCompleteEvent
Sourcepub fn new() -> UserCreateCompleteEvent
pub fn new() -> UserCreateCompleteEvent
Models the User Created Event.
This is different than the user.create event in that it will be sent after the user has been created. This event cannot be made transactional.
Trait Implementations§
Source§impl Clone for UserCreateCompleteEvent
impl Clone for UserCreateCompleteEvent
Source§fn clone(&self) -> UserCreateCompleteEvent
fn clone(&self) -> UserCreateCompleteEvent
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 UserCreateCompleteEvent
impl Debug for UserCreateCompleteEvent
Source§impl Default for UserCreateCompleteEvent
impl Default for UserCreateCompleteEvent
Source§fn default() -> UserCreateCompleteEvent
fn default() -> UserCreateCompleteEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserCreateCompleteEvent
impl<'de> Deserialize<'de> for UserCreateCompleteEvent
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 UserCreateCompleteEvent
impl PartialEq for UserCreateCompleteEvent
Source§impl Serialize for UserCreateCompleteEvent
impl Serialize for UserCreateCompleteEvent
impl StructuralPartialEq for UserCreateCompleteEvent
Auto Trait Implementations§
impl Freeze for UserCreateCompleteEvent
impl RefUnwindSafe for UserCreateCompleteEvent
impl Send for UserCreateCompleteEvent
impl Sync for UserCreateCompleteEvent
impl Unpin for UserCreateCompleteEvent
impl UnwindSafe for UserCreateCompleteEvent
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