pub enum AclCategory {
Show 24 variants
None,
Keyspace,
Read,
Write,
Set,
SortedSet,
List,
Hash,
String,
Bitmap,
HyperLogLog,
Geo,
Stream,
PubSub,
Admin,
Fast,
Slow,
Blocking,
Dangerous,
Connection,
Transaction,
Scripting,
Single(String),
Multi(Vec<AclCategory>),
}Variants§
None
Keyspace
Read
Write
Set
SortedSet
List
Hash
String
Bitmap
HyperLogLog
Geo
Stream
PubSub
Admin
Fast
Slow
Blocking
Dangerous
Connection
Transaction
Scripting
Single(String)
Multi(Vec<AclCategory>)
Trait Implementations§
Source§impl Clone for AclCategory
impl Clone for AclCategory
Source§fn clone(&self) -> AclCategory
fn clone(&self) -> AclCategory
Returns a duplicate of the value. Read more
1.0.0 · 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 AclCategory
impl Debug for AclCategory
Source§impl Default for AclCategory
impl Default for AclCategory
Source§fn default() -> AclCategory
fn default() -> AclCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AclCategory
impl<'de> Deserialize<'de> for AclCategory
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 Display for AclCategory
impl Display for AclCategory
Source§impl From<&str> for AclCategory
impl From<&str> for AclCategory
Source§impl From<AclCategory> for String
impl From<AclCategory> for String
Source§fn from(value: AclCategory) -> Self
fn from(value: AclCategory) -> Self
Converts to this type from the input type.
Source§impl From<Vec<AclCategory>> for AclCategory
impl From<Vec<AclCategory>> for AclCategory
Source§fn from(value: Vec<AclCategory>) -> Self
fn from(value: Vec<AclCategory>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AclCategory
impl PartialEq for AclCategory
impl Eq for AclCategory
impl StructuralPartialEq for AclCategory
Auto Trait Implementations§
impl Freeze for AclCategory
impl RefUnwindSafe for AclCategory
impl Send for AclCategory
impl Sync for AclCategory
impl Unpin for AclCategory
impl UnsafeUnpin for AclCategory
impl UnwindSafe for AclCategory
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