pub struct StoreCommand {
pub command_name: String,
pub key: String,
pub flags: u16,
pub exptime: u32,
pub bytes: u64,
pub cas_unique: Option<u64>,
pub noreply: Option<String>,
pub data_block: Vec<u8>,
}Fields§
§command_name: String§key: String§flags: u16§exptime: u32§bytes: u64§cas_unique: Option<u64>§noreply: Option<String>§data_block: Vec<u8>Implementations§
Source§impl StoreCommand
impl StoreCommand
Trait Implementations§
Source§impl Debug for StoreCommand
impl Debug for StoreCommand
Source§impl PartialEq for StoreCommand
impl PartialEq for StoreCommand
Source§fn eq(&self, other: &StoreCommand) -> bool
fn eq(&self, other: &StoreCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StoreCommand
Auto Trait Implementations§
impl Freeze for StoreCommand
impl RefUnwindSafe for StoreCommand
impl Send for StoreCommand
impl Sync for StoreCommand
impl Unpin for StoreCommand
impl UnsafeUnpin for StoreCommand
impl UnwindSafe for StoreCommand
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