pub struct IdentityProviderPendingLinkResponse {
pub identity_provider_tenant_configuration: Option<Box<IdentityProviderTenantConfiguration>>,
pub link_count: Option<i32>,
pub pending_id_p_link: Option<Box<PendingIdPLink>>,
}
Expand description
IdentityProviderPendingLinkResponse :
Fields§
§identity_provider_tenant_configuration: Option<Box<IdentityProviderTenantConfiguration>>
§link_count: Option<i32>
§pending_id_p_link: Option<Box<PendingIdPLink>>
Implementations§
Trait Implementations§
Source§impl Clone for IdentityProviderPendingLinkResponse
impl Clone for IdentityProviderPendingLinkResponse
Source§fn clone(&self) -> IdentityProviderPendingLinkResponse
fn clone(&self) -> IdentityProviderPendingLinkResponse
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 IdentityProviderPendingLinkResponse
impl Default for IdentityProviderPendingLinkResponse
Source§fn default() -> IdentityProviderPendingLinkResponse
fn default() -> IdentityProviderPendingLinkResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityProviderPendingLinkResponse
impl<'de> Deserialize<'de> for IdentityProviderPendingLinkResponse
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 IdentityProviderPendingLinkResponse
impl PartialEq for IdentityProviderPendingLinkResponse
Source§fn eq(&self, other: &IdentityProviderPendingLinkResponse) -> bool
fn eq(&self, other: &IdentityProviderPendingLinkResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IdentityProviderPendingLinkResponse
Auto Trait Implementations§
impl Freeze for IdentityProviderPendingLinkResponse
impl RefUnwindSafe for IdentityProviderPendingLinkResponse
impl Send for IdentityProviderPendingLinkResponse
impl Sync for IdentityProviderPendingLinkResponse
impl Unpin for IdentityProviderPendingLinkResponse
impl UnwindSafe for IdentityProviderPendingLinkResponse
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