pub struct IdentityProviderLinkResponse {
pub identity_provider_link: Option<Box<IdentityProviderLink>>,
pub identity_provider_links: Option<Vec<IdentityProviderLink>>,
}
Expand description
IdentityProviderLinkResponse :
Fields§
§identity_provider_link: Option<Box<IdentityProviderLink>>
§identity_provider_links: Option<Vec<IdentityProviderLink>>
Implementations§
Source§impl IdentityProviderLinkResponse
impl IdentityProviderLinkResponse
Sourcepub fn new() -> IdentityProviderLinkResponse
pub fn new() -> IdentityProviderLinkResponse
Trait Implementations§
Source§impl Clone for IdentityProviderLinkResponse
impl Clone for IdentityProviderLinkResponse
Source§fn clone(&self) -> IdentityProviderLinkResponse
fn clone(&self) -> IdentityProviderLinkResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IdentityProviderLinkResponse
impl Debug for IdentityProviderLinkResponse
Source§impl Default for IdentityProviderLinkResponse
impl Default for IdentityProviderLinkResponse
Source§fn default() -> IdentityProviderLinkResponse
fn default() -> IdentityProviderLinkResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityProviderLinkResponse
impl<'de> Deserialize<'de> for IdentityProviderLinkResponse
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 IdentityProviderLinkResponse
impl PartialEq for IdentityProviderLinkResponse
Source§fn eq(&self, other: &IdentityProviderLinkResponse) -> bool
fn eq(&self, other: &IdentityProviderLinkResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IdentityProviderLinkResponse
Auto Trait Implementations§
impl Freeze for IdentityProviderLinkResponse
impl RefUnwindSafe for IdentityProviderLinkResponse
impl Send for IdentityProviderLinkResponse
impl Sync for IdentityProviderLinkResponse
impl Unpin for IdentityProviderLinkResponse
impl UnwindSafe for IdentityProviderLinkResponse
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