Struct redis::acl::AclInfo[][src]

pub struct AclInfo {
    pub flags: Vec<Rule>,
    pub passwords: Vec<Rule>,
    pub commands: Vec<Rule>,
    pub keys: Vec<Rule>,
}
This is supported on crate feature acl only.

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.

Trait Implementations

impl Debug for AclInfo[src]

impl Eq for AclInfo[src]

impl FromRedisValue for AclInfo[src]

impl PartialEq<AclInfo> for AclInfo[src]

impl StructuralEq for AclInfo[src]

impl StructuralPartialEq for AclInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,