pub enum CmdType {
Show 16 variants
Ping = 1,
Authenticate = 2,
Keys = 3,
Exists = 4,
Expire = 5,
Dbs = 6,
SetString = 17,
GetString = 18,
DelString = 19,
HashSet = 33,
HashGet = 34,
HashDel = 35,
HashExists = 36,
HashLen = 37,
HashFields = 38,
Error = 255,
}Variants§
Ping = 1
Authenticate = 2
Keys = 3
Exists = 4
Expire = 5
Dbs = 6
SetString = 17
GetString = 18
DelString = 19
HashSet = 33
HashGet = 34
HashDel = 35
HashExists = 36
HashLen = 37
HashFields = 38
Error = 255
Trait Implementations§
impl StructuralPartialEq for CmdType
Auto Trait Implementations§
impl Freeze for CmdType
impl RefUnwindSafe for CmdType
impl Send for CmdType
impl Sync for CmdType
impl Unpin for CmdType
impl UnwindSafe for CmdType
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