pub enum RBACPolicyCreateRequestAllowdeny {
ALLOW,
DENY,
Unknown(String),
}Expand description
Inline enum for RBACPolicyCreateRequest.allowDeny.
Variants§
Trait Implementations§
Source§impl Clone for RBACPolicyCreateRequestAllowdeny
impl Clone for RBACPolicyCreateRequestAllowdeny
Source§fn clone(&self) -> RBACPolicyCreateRequestAllowdeny
fn clone(&self) -> RBACPolicyCreateRequestAllowdeny
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 Default for RBACPolicyCreateRequestAllowdeny
impl Default for RBACPolicyCreateRequestAllowdeny
Source§fn default() -> RBACPolicyCreateRequestAllowdeny
fn default() -> RBACPolicyCreateRequestAllowdeny
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RBACPolicyCreateRequestAllowdeny
impl<'de> Deserialize<'de> for RBACPolicyCreateRequestAllowdeny
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 RBACPolicyCreateRequestAllowdeny
impl PartialEq for RBACPolicyCreateRequestAllowdeny
Source§fn eq(&self, other: &RBACPolicyCreateRequestAllowdeny) -> bool
fn eq(&self, other: &RBACPolicyCreateRequestAllowdeny) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RBACPolicyCreateRequestAllowdeny
Auto Trait Implementations§
impl Freeze for RBACPolicyCreateRequestAllowdeny
impl RefUnwindSafe for RBACPolicyCreateRequestAllowdeny
impl Send for RBACPolicyCreateRequestAllowdeny
impl Sync for RBACPolicyCreateRequestAllowdeny
impl Unpin for RBACPolicyCreateRequestAllowdeny
impl UnsafeUnpin for RBACPolicyCreateRequestAllowdeny
impl UnwindSafe for RBACPolicyCreateRequestAllowdeny
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