pub struct CursorEntry {
pub key: Vec<u8>,
pub val_type: ValueType,
pub value: Vec<u8>,
}Expand description
A key-value entry returned by the cursor.
Fields§
§key: Vec<u8>§val_type: ValueType§value: Vec<u8>Auto Trait Implementations§
impl Freeze for CursorEntry
impl RefUnwindSafe for CursorEntry
impl Send for CursorEntry
impl Sync for CursorEntry
impl Unpin for CursorEntry
impl UnsafeUnpin for CursorEntry
impl UnwindSafe for CursorEntry
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