pub struct LeafEntry {
pub key: Vec<u8>,
pub value: Vec<u8>,
}Expand description
One leaf slot in the decoded in-memory representation.
Fields§
§key: Vec<u8>The key bytes.
value: Vec<u8>The value bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LeafEntry
impl RefUnwindSafe for LeafEntry
impl Send for LeafEntry
impl Sync for LeafEntry
impl Unpin for LeafEntry
impl UnsafeUnpin for LeafEntry
impl UnwindSafe for LeafEntry
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