pub struct UserIdentityUpdateEvent {
pub login_id_type: Option<String>,
pub new_login_id: Option<String>,
pub previous_login_id: Option<String>,
pub user: Option<Box<User>>,
}
Expand description
UserIdentityUpdateEvent : Models the user identity update event
Fields§
§login_id_type: Option<String>
§new_login_id: Option<String>
§previous_login_id: Option<String>
§user: Option<Box<User>>
Implementations§
Source§impl UserIdentityUpdateEvent
impl UserIdentityUpdateEvent
Sourcepub fn new() -> UserIdentityUpdateEvent
pub fn new() -> UserIdentityUpdateEvent
Models the user identity update event
Trait Implementations§
Source§impl Clone for UserIdentityUpdateEvent
impl Clone for UserIdentityUpdateEvent
Source§fn clone(&self) -> UserIdentityUpdateEvent
fn clone(&self) -> UserIdentityUpdateEvent
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 UserIdentityUpdateEvent
impl Debug for UserIdentityUpdateEvent
Source§impl Default for UserIdentityUpdateEvent
impl Default for UserIdentityUpdateEvent
Source§fn default() -> UserIdentityUpdateEvent
fn default() -> UserIdentityUpdateEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserIdentityUpdateEvent
impl<'de> Deserialize<'de> for UserIdentityUpdateEvent
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 UserIdentityUpdateEvent
impl PartialEq for UserIdentityUpdateEvent
Source§impl Serialize for UserIdentityUpdateEvent
impl Serialize for UserIdentityUpdateEvent
impl StructuralPartialEq for UserIdentityUpdateEvent
Auto Trait Implementations§
impl Freeze for UserIdentityUpdateEvent
impl RefUnwindSafe for UserIdentityUpdateEvent
impl Send for UserIdentityUpdateEvent
impl Sync for UserIdentityUpdateEvent
impl Unpin for UserIdentityUpdateEvent
impl UnwindSafe for UserIdentityUpdateEvent
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