#[repr(u32)]pub enum MemcacheProtocol {
Other = 0,
Ascii = 1,
Binary = 2,
}Expand description
Memcache Protocol
§XDR Definition (sFlow Memcache)
enum memcache_protocol {
OTHER = 0;
ASCII = 1;
BINARY = 2;
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MemcacheProtocol
impl Clone for MemcacheProtocol
Source§fn clone(&self) -> MemcacheProtocol
fn clone(&self) -> MemcacheProtocol
Returns a duplicate 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 MemcacheProtocol
impl Debug for MemcacheProtocol
Source§impl PartialEq for MemcacheProtocol
impl PartialEq for MemcacheProtocol
impl Copy for MemcacheProtocol
impl Eq for MemcacheProtocol
impl StructuralPartialEq for MemcacheProtocol
Auto Trait Implementations§
impl Freeze for MemcacheProtocol
impl RefUnwindSafe for MemcacheProtocol
impl Send for MemcacheProtocol
impl Sync for MemcacheProtocol
impl Unpin for MemcacheProtocol
impl UnwindSafe for MemcacheProtocol
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