pub struct AllowedAccess {Show 14 fields
pub access_id: Option<String>,
pub access_type: Option<String>,
pub cluster_id: Option<i64>,
pub created_at: Option<String>,
pub description: Option<String>,
pub editable: Option<bool>,
pub error: Option<String>,
pub id: Option<i64>,
pub is_valid: Option<bool>,
pub name: Option<String>,
pub permissions: Option<Vec<String>>,
pub sub_claims: Option<HashMap<String, Vec<String>>>,
pub sub_claims_case_insensitive: Option<bool>,
pub updated_at: Option<String>,
}Fields§
§access_id: Option<String>§access_type: Option<String>§cluster_id: Option<i64>§created_at: Option<String>§description: Option<String>§editable: Option<bool>§error: Option<String>§id: Option<i64>§is_valid: Option<bool>§name: Option<String>§permissions: Option<Vec<String>>§sub_claims: Option<HashMap<String, Vec<String>>>§sub_claims_case_insensitive: Option<bool>§updated_at: Option<String>Implementations§
Source§impl AllowedAccess
impl AllowedAccess
pub fn new() -> AllowedAccess
Trait Implementations§
Source§impl Clone for AllowedAccess
impl Clone for AllowedAccess
Source§fn clone(&self) -> AllowedAccess
fn clone(&self) -> AllowedAccess
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 AllowedAccess
impl Debug for AllowedAccess
Source§impl Default for AllowedAccess
impl Default for AllowedAccess
Source§fn default() -> AllowedAccess
fn default() -> AllowedAccess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AllowedAccess
impl<'de> Deserialize<'de> for AllowedAccess
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 AllowedAccess
impl PartialEq for AllowedAccess
Source§fn eq(&self, other: &AllowedAccess) -> bool
fn eq(&self, other: &AllowedAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AllowedAccess
impl Serialize for AllowedAccess
impl StructuralPartialEq for AllowedAccess
Auto Trait Implementations§
impl Freeze for AllowedAccess
impl RefUnwindSafe for AllowedAccess
impl Send for AllowedAccess
impl Sync for AllowedAccess
impl Unpin for AllowedAccess
impl UnsafeUnpin for AllowedAccess
impl UnwindSafe for AllowedAccess
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