pub struct ACLUser {
pub id: Option<i32>,
pub name: Option<String>,
pub role: Option<String>,
pub status: Option<String>,
pub links: Option<Vec<HashMap<String, Value>>>,
pub extra: Value,
}
Expand description
Redis ACL user information
Fields§
§id: Option<i32>
§name: Option<String>
§role: Option<String>
§status: Option<String>
§links: Option<Vec<HashMap<String, Value>>>
HATEOAS links
extra: Value
Additional fields from the API
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ACLUser
impl<'de> Deserialize<'de> for ACLUser
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 ACLUser
impl RefUnwindSafe for ACLUser
impl Send for ACLUser
impl Sync for ACLUser
impl Unpin for ACLUser
impl UnwindSafe for ACLUser
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