pub struct KvPut {
pub nonce: u16,
pub flags: u8,
pub base: u128,
pub key: String,
pub value: Vec<u8>,
}Expand description
A CAS put or delete (C2S_KV_PUT).
Fields§
§nonce: u16§flags: u8§base: u128§key: String§value: Vec<u8>Trait Implementations§
impl Eq for KvPut
impl StructuralPartialEq for KvPut
Auto Trait Implementations§
impl Freeze for KvPut
impl RefUnwindSafe for KvPut
impl Send for KvPut
impl Sync for KvPut
impl Unpin for KvPut
impl UnsafeUnpin for KvPut
impl UnwindSafe for KvPut
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