Skip to main content

AclInfo

Struct AclInfo 

Source
pub struct AclInfo {
    pub flags: Vec<Rule>,
    pub passwords: Vec<Rule>,
    pub commands: Vec<Rule>,
    pub keys: Vec<Rule>,
    pub channels: Vec<Rule>,
    pub selectors: Vec<Rule>,
}
Expand description

An info dictionary type storing Redis ACL information as multiple Rule. This type collects key/value data returned by the ACL GETUSER command.

Fields§

§flags: Vec<Rule>

Describes flag rules for the user. Represented by Rule::On, Rule::Off, Rule::AllKeys, Rule::AllCommands and Rule::NoPass.

§passwords: Vec<Rule>

Describes the user’s passwords. Represented by Rule::AddHashedPass.

§commands: Vec<Rule>

Describes capabilities of which commands the user can call. Represented by Rule::AddCommand, Rule::AddCategory, Rule::RemoveCommand and Rule::RemoveCategory.

§keys: Vec<Rule>

Describes patterns of keys which the user can access. Represented by Rule::Pattern.

§channels: Vec<Rule>

Describes pub/sub channel patterns. Represented by Rule::Channel.

§selectors: Vec<Rule>

Describes selectors. Represented by Rule::Selector.

Trait Implementations§

Source§

impl Debug for AclInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AclInfo

Source§

fn default() -> AclInfo

Returns the “default value” for a type. Read more
Source§

impl Eq for AclInfo

Source§

impl FromRedisValue for AclInfo

Source§

fn from_redis_value(v: Value) -> Result<Self, ParsingError>

Given a redis Value this attempts to convert it into the given destination type. If that fails because it’s not compatible an appropriate error is generated.
Source§

fn from_redis_value_ref(v: &Value) -> Result<Self, ParsingError>

Given a redis Value this attempts to convert it into the given destination type. If that fails because it’s not compatible an appropriate error is generated.
Source§

fn from_redis_value_refs(items: &[Value]) -> Result<Vec<Self>, ParsingError>

Similar to from_redis_value_ref but constructs a vector of objects from another vector of values. This primarily exists internally to customize the behavior for vectors of tuples.
Source§

fn from_redis_values(items: Vec<Value>) -> Result<Vec<Self>, ParsingError>

The same as from_redis_value_refs, but takes a Vec<Value> instead of a &[Value].
Source§

fn from_each_redis_values(items: Vec<Value>) -> Vec<Result<Self, ParsingError>>

The same as from_redis_values, but returns a result for each conversion to make handling them case-by-case possible.
Source§

fn from_byte_slice(_vec: &[u8]) -> Option<Vec<Self>>

Convert bytes to a single element vector.
Source§

fn from_byte_vec(_vec: Vec<u8>) -> Result<Vec<Self>, ParsingError>

Convert bytes to a single element vector.
Source§

impl PartialEq for AclInfo

Source§

fn eq(&self, other: &AclInfo) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for AclInfo

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.