#[repr(u32)]pub enum MemcacheCommand {
Show 17 variants
Other = 0,
Set = 1,
Add = 2,
Replace = 3,
Append = 4,
Prepend = 5,
Cas = 6,
Get = 7,
Gets = 8,
Incr = 9,
Decr = 10,
Delete = 11,
Stats = 12,
Flush = 13,
Version = 14,
Quit = 15,
Touch = 16,
}Expand description
Memcache Command
§XDR Definition (sFlow Memcache)
enum memcache_cmd {
OTHER = 0;
SET = 1;
ADD = 2;
REPLACE = 3;
APPEND = 4;
PREPEND = 5;
CAS = 6;
GET = 7;
GETS = 8;
INCR = 9;
DECR = 10;
DELETE = 11;
STATS = 12;
FLUSH = 13;
VERSION = 14;
QUIT = 15;
TOUCH = 16;
}Variants§
Other = 0
Set = 1
Add = 2
Replace = 3
Append = 4
Prepend = 5
Cas = 6
Get = 7
Gets = 8
Incr = 9
Decr = 10
Delete = 11
Stats = 12
Flush = 13
Version = 14
Quit = 15
Touch = 16
Implementations§
Trait Implementations§
Source§impl Clone for MemcacheCommand
impl Clone for MemcacheCommand
Source§fn clone(&self) -> MemcacheCommand
fn clone(&self) -> MemcacheCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MemcacheCommand
Source§impl Debug for MemcacheCommand
impl Debug for MemcacheCommand
impl Eq for MemcacheCommand
Source§impl PartialEq for MemcacheCommand
impl PartialEq for MemcacheCommand
Source§fn eq(&self, other: &MemcacheCommand) -> bool
fn eq(&self, other: &MemcacheCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemcacheCommand
Auto Trait Implementations§
impl Freeze for MemcacheCommand
impl RefUnwindSafe for MemcacheCommand
impl Send for MemcacheCommand
impl Sync for MemcacheCommand
impl Unpin for MemcacheCommand
impl UnsafeUnpin for MemcacheCommand
impl UnwindSafe for MemcacheCommand
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