pub enum BinMsgType {
Show 43 variants
Get = 0,
Set = 1,
Add = 2,
Replace = 3,
Delete = 4,
Incr = 5,
Decr = 6,
Quit = 7,
GetQ = 9,
Noop = 10,
Version = 11,
GetK = 12,
GetKQ = 13,
Append = 14,
Prepend = 15,
Stat = 16,
SetQ = 17,
AddQ = 18,
ReplaceQ = 19,
DeleteQ = 20,
IncrementQ = 21,
DecrementQ = 22,
QuitQ = 23,
FlushQ = 24,
AppendQ = 25,
PrependQ = 26,
Verbosity = 27,
Touch = 28,
GAT = 29,
GATQ = 30,
RGet = 48,
RSet = 49,
RSetQ = 50,
RAppend = 51,
RAppendQ = 52,
RPrepend = 53,
RPrependQ = 54,
RDelete = 55,
RDeleteQ = 56,
RIncr = 57,
RIncrQ = 58,
RDecr = 59,
RDecrQ = 60,
}Variants§
Get = 0
Set = 1
Add = 2
Replace = 3
Delete = 4
Incr = 5
Decr = 6
Quit = 7
GetQ = 9
Noop = 10
Version = 11
GetK = 12
GetKQ = 13
Append = 14
Prepend = 15
Stat = 16
SetQ = 17
AddQ = 18
ReplaceQ = 19
DeleteQ = 20
IncrementQ = 21
DecrementQ = 22
QuitQ = 23
FlushQ = 24
AppendQ = 25
PrependQ = 26
Verbosity = 27
Touch = 28
GAT = 29
GATQ = 30
RGet = 48
RSet = 49
RSetQ = 50
RAppend = 51
RAppendQ = 52
RPrepend = 53
RPrependQ = 54
RDelete = 55
RDeleteQ = 56
RIncr = 57
RIncrQ = 58
RDecr = 59
RDecrQ = 60
Trait Implementations§
Source§impl Clone for BinMsgType
impl Clone for BinMsgType
Source§fn clone(&self) -> BinMsgType
fn clone(&self) -> BinMsgType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinMsgType
impl Debug for BinMsgType
Source§impl PartialEq for BinMsgType
impl PartialEq for BinMsgType
impl Copy for BinMsgType
impl Eq for BinMsgType
impl StructuralPartialEq for BinMsgType
Auto Trait Implementations§
impl Freeze for BinMsgType
impl RefUnwindSafe for BinMsgType
impl Send for BinMsgType
impl Sync for BinMsgType
impl Unpin for BinMsgType
impl UnwindSafe for BinMsgType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.