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