pub struct RedisAcl {
    pub uid: u32,
    pub name: String,
    pub acl: String,
    pub description: Option<String>,
    pub bdbs: Option<Vec<u32>>,
    pub extra: Value,
}Expand description
Redis ACL information
Fields§
§uid: u32§name: String§acl: String§description: Option<String>§bdbs: Option<Vec<u32>>List of database UIDs this ACL is associated with
extra: ValueTrait Implementations§
Source§impl<'de> Deserialize<'de> for RedisAcl
 
impl<'de> Deserialize<'de> for RedisAcl
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
Auto Trait Implementations§
impl Freeze for RedisAcl
impl RefUnwindSafe for RedisAcl
impl Send for RedisAcl
impl Sync for RedisAcl
impl Unpin for RedisAcl
impl UnwindSafe for RedisAcl
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