#[repr(u32)]pub enum MDBX_cursor_op {
Show 20 variants
MDBX_FIRST = 0,
MDBX_FIRST_DUP = 1,
MDBX_GET_BOTH = 2,
MDBX_GET_BOTH_RANGE = 3,
MDBX_GET_CURRENT = 4,
MDBX_GET_MULTIPLE = 5,
MDBX_LAST = 6,
MDBX_LAST_DUP = 7,
MDBX_NEXT = 8,
MDBX_NEXT_DUP = 9,
MDBX_NEXT_MULTIPLE = 10,
MDBX_NEXT_NODUP = 11,
MDBX_PREV = 12,
MDBX_PREV_DUP = 13,
MDBX_PREV_NODUP = 14,
MDBX_SET = 15,
MDBX_SET_KEY = 16,
MDBX_SET_RANGE = 17,
MDBX_PREV_MULTIPLE = 18,
MDBX_SET_LOWERBOUND = 19,
}Variants§
MDBX_FIRST = 0
MDBX_FIRST_DUP = 1
MDBX_GET_BOTH = 2
MDBX_GET_BOTH_RANGE = 3
MDBX_GET_CURRENT = 4
MDBX_GET_MULTIPLE = 5
MDBX_LAST = 6
MDBX_LAST_DUP = 7
MDBX_NEXT = 8
MDBX_NEXT_DUP = 9
MDBX_NEXT_MULTIPLE = 10
MDBX_NEXT_NODUP = 11
MDBX_PREV = 12
MDBX_PREV_DUP = 13
MDBX_PREV_NODUP = 14
MDBX_SET = 15
MDBX_SET_KEY = 16
MDBX_SET_RANGE = 17
MDBX_PREV_MULTIPLE = 18
MDBX_SET_LOWERBOUND = 19
Trait Implementations§
Source§impl Clone for MDBX_cursor_op
impl Clone for MDBX_cursor_op
Source§fn clone(&self) -> MDBX_cursor_op
fn clone(&self) -> MDBX_cursor_op
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MDBX_cursor_op
impl Debug for MDBX_cursor_op
Source§impl Hash for MDBX_cursor_op
impl Hash for MDBX_cursor_op
Source§impl PartialEq for MDBX_cursor_op
impl PartialEq for MDBX_cursor_op
impl Copy for MDBX_cursor_op
impl Eq for MDBX_cursor_op
impl StructuralPartialEq for MDBX_cursor_op
Auto Trait Implementations§
impl Freeze for MDBX_cursor_op
impl RefUnwindSafe for MDBX_cursor_op
impl Send for MDBX_cursor_op
impl Sync for MDBX_cursor_op
impl Unpin for MDBX_cursor_op
impl UnwindSafe for MDBX_cursor_op
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