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