pub struct KvEntry {
pub key: String,
pub value: Bytes,
pub content_type: String,
}Expand description
A stored byte value and its metadata.
Fields§
§key: StringStorage key.
value: BytesStored bytes.
content_type: StringMIME content type.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for KvEntry
impl RefUnwindSafe for KvEntry
impl Send for KvEntry
impl Sync for KvEntry
impl Unpin for KvEntry
impl UnsafeUnpin for KvEntry
impl UnwindSafe for KvEntry
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