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