pub struct UserIdentityProviderUnlinkEvent {
pub identity_provider_link: Option<Box<IdentityProviderLink>>,
pub user: Option<Box<User>>,
}
Expand description
UserIdentityProviderUnlinkEvent : Models the User Identity Provider Unlink Event.
Fields§
§identity_provider_link: Option<Box<IdentityProviderLink>>
§user: Option<Box<User>>
Implementations§
Source§impl UserIdentityProviderUnlinkEvent
impl UserIdentityProviderUnlinkEvent
Sourcepub fn new() -> UserIdentityProviderUnlinkEvent
pub fn new() -> UserIdentityProviderUnlinkEvent
Models the User Identity Provider Unlink Event.
Trait Implementations§
Source§impl Clone for UserIdentityProviderUnlinkEvent
impl Clone for UserIdentityProviderUnlinkEvent
Source§fn clone(&self) -> UserIdentityProviderUnlinkEvent
fn clone(&self) -> UserIdentityProviderUnlinkEvent
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 Default for UserIdentityProviderUnlinkEvent
impl Default for UserIdentityProviderUnlinkEvent
Source§fn default() -> UserIdentityProviderUnlinkEvent
fn default() -> UserIdentityProviderUnlinkEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserIdentityProviderUnlinkEvent
impl<'de> Deserialize<'de> for UserIdentityProviderUnlinkEvent
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 UserIdentityProviderUnlinkEvent
impl PartialEq for UserIdentityProviderUnlinkEvent
Source§fn eq(&self, other: &UserIdentityProviderUnlinkEvent) -> bool
fn eq(&self, other: &UserIdentityProviderUnlinkEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UserIdentityProviderUnlinkEvent
Auto Trait Implementations§
impl Freeze for UserIdentityProviderUnlinkEvent
impl RefUnwindSafe for UserIdentityProviderUnlinkEvent
impl Send for UserIdentityProviderUnlinkEvent
impl Sync for UserIdentityProviderUnlinkEvent
impl Unpin for UserIdentityProviderUnlinkEvent
impl UnwindSafe for UserIdentityProviderUnlinkEvent
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