pub struct KvEntry {
pub key: Vec<u8>,
pub value: Vec<u8>,
}Expand description
One binary KV entry in canonical key order.
Fields§
§key: Vec<u8>Binary key.
value: Vec<u8>Opaque binary value.
Trait Implementations§
impl Eq for KvEntry
impl StructuralPartialEq for KvEntry
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