pub enum OperatorRole {
ClusterAdmin,
TenantAdmin,
BucketAdmin,
Auditor,
ReadOnlyOperator,
SecurityOfficer,
}Variants§
Trait Implementations§
Source§impl Clone for OperatorRole
impl Clone for OperatorRole
Source§fn clone(&self) -> OperatorRole
fn clone(&self) -> OperatorRole
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 OperatorRole
impl Debug for OperatorRole
Source§impl<'de> Deserialize<'de> for OperatorRole
impl<'de> Deserialize<'de> for OperatorRole
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OperatorRole, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OperatorRole, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OperatorRole
impl PartialEq for OperatorRole
Source§fn eq(&self, other: &OperatorRole) -> bool
fn eq(&self, other: &OperatorRole) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OperatorRole
impl Serialize for OperatorRole
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for OperatorRole
impl Eq for OperatorRole
impl StructuralPartialEq for OperatorRole
Auto Trait Implementations§
impl Freeze for OperatorRole
impl RefUnwindSafe for OperatorRole
impl Send for OperatorRole
impl Sync for OperatorRole
impl Unpin for OperatorRole
impl UnsafeUnpin for OperatorRole
impl UnwindSafe for OperatorRole
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