pub struct GetValue {
pub key: Bytes,
pub data: Bytes,
pub flags: u32,
pub cas: Option<u64>,
}Expand description
A value returned from a multi-key GET command, including the key.
Fields§
§key: BytesThe key for this value.
data: BytesThe cached data.
flags: u32Flags stored with the item.
cas: Option<u64>CAS unique token (present when the server returns it via gets).
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for GetValue
impl RefUnwindSafe for GetValue
impl Send for GetValue
impl Sync for GetValue
impl Unpin for GetValue
impl UnsafeUnpin for GetValue
impl UnwindSafe for GetValue
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