#[repr(u32)]pub enum MemcacheStatus {
Unknown = 0,
Ok = 1,
Error = 2,
ClientError = 3,
ServerError = 4,
Stored = 5,
NotStored = 6,
Exists = 7,
NotFound = 8,
Deleted = 9,
}Expand description
Memcache Status
§XDR Definition (sFlow Memcache)
enum memcache_status {
UNKNOWN = 0;
OK = 1;
ERROR = 2;
CLIENT_ERROR = 3;
SERVER_ERROR = 4;
STORED = 5;
NOT_STORED = 6;
EXISTS = 7;
NOT_FOUND = 8;
DELETED = 9;
}Variants§
Unknown = 0
Ok = 1
Error = 2
ClientError = 3
ServerError = 4
Stored = 5
NotStored = 6
Exists = 7
NotFound = 8
Deleted = 9
Implementations§
Trait Implementations§
Source§impl Clone for MemcacheStatus
impl Clone for MemcacheStatus
Source§fn clone(&self) -> MemcacheStatus
fn clone(&self) -> MemcacheStatus
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 MemcacheStatus
Source§impl Debug for MemcacheStatus
impl Debug for MemcacheStatus
impl Eq for MemcacheStatus
Source§impl PartialEq for MemcacheStatus
impl PartialEq for MemcacheStatus
Source§fn eq(&self, other: &MemcacheStatus) -> bool
fn eq(&self, other: &MemcacheStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemcacheStatus
Auto Trait Implementations§
impl Freeze for MemcacheStatus
impl RefUnwindSafe for MemcacheStatus
impl Send for MemcacheStatus
impl Sync for MemcacheStatus
impl Unpin for MemcacheStatus
impl UnsafeUnpin for MemcacheStatus
impl UnwindSafe for MemcacheStatus
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