pub struct RoleAuthMethodAssociation {
pub assoc_id: Option<String>,
pub auth_method_access_id: Option<String>,
pub auth_method_id: Option<i64>,
pub auth_method_name: Option<String>,
pub auth_method_sub_claims: Option<HashMap<String, Vec<String>>>,
pub is_subclaims_with_operator: Option<bool>,
pub sub_claims_case_sensitive: Option<bool>,
}Expand description
RoleAuthMethodAssociation : RoleAuthMethodAssociation includes details of an association between a role and an auth method.
Fields§
§assoc_id: Option<String>§auth_method_access_id: Option<String>§auth_method_id: Option<i64>§auth_method_name: Option<String>§auth_method_sub_claims: Option<HashMap<String, Vec<String>>>§is_subclaims_with_operator: Option<bool>§sub_claims_case_sensitive: Option<bool>Implementations§
Source§impl RoleAuthMethodAssociation
impl RoleAuthMethodAssociation
Sourcepub fn new() -> RoleAuthMethodAssociation
pub fn new() -> RoleAuthMethodAssociation
RoleAuthMethodAssociation includes details of an association between a role and an auth method.
Trait Implementations§
Source§impl Clone for RoleAuthMethodAssociation
impl Clone for RoleAuthMethodAssociation
Source§fn clone(&self) -> RoleAuthMethodAssociation
fn clone(&self) -> RoleAuthMethodAssociation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RoleAuthMethodAssociation
impl Debug for RoleAuthMethodAssociation
Source§impl Default for RoleAuthMethodAssociation
impl Default for RoleAuthMethodAssociation
Source§fn default() -> RoleAuthMethodAssociation
fn default() -> RoleAuthMethodAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoleAuthMethodAssociation
impl<'de> Deserialize<'de> for RoleAuthMethodAssociation
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 RoleAuthMethodAssociation
impl PartialEq for RoleAuthMethodAssociation
Source§fn eq(&self, other: &RoleAuthMethodAssociation) -> bool
fn eq(&self, other: &RoleAuthMethodAssociation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RoleAuthMethodAssociation
Auto Trait Implementations§
impl Freeze for RoleAuthMethodAssociation
impl RefUnwindSafe for RoleAuthMethodAssociation
impl Send for RoleAuthMethodAssociation
impl Sync for RoleAuthMethodAssociation
impl Unpin for RoleAuthMethodAssociation
impl UnsafeUnpin for RoleAuthMethodAssociation
impl UnwindSafe for RoleAuthMethodAssociation
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