#[repr(C)]pub enum MDB_cursor_op {
Show 18 variants
MDB_FIRST = 0,
MDB_FIRST_DUP = 1,
MDB_GET_BOTH = 2,
MDB_GET_BOTH_RANGE = 3,
MDB_GET_CURRENT = 4,
MDB_GET_MULTIPLE = 5,
MDB_LAST = 6,
MDB_LAST_DUP = 7,
MDB_NEXT = 8,
MDB_NEXT_DUP = 9,
MDB_NEXT_MULTIPLE = 10,
MDB_NEXT_NODUP = 11,
MDB_PREV = 12,
MDB_PREV_DUP = 13,
MDB_PREV_NODUP = 14,
MDB_SET = 15,
MDB_SET_KEY = 16,
MDB_SET_RANGE = 17,
}
Variants§
MDB_FIRST = 0
MDB_FIRST_DUP = 1
MDB_GET_BOTH = 2
MDB_GET_BOTH_RANGE = 3
MDB_GET_CURRENT = 4
MDB_GET_MULTIPLE = 5
MDB_LAST = 6
MDB_LAST_DUP = 7
MDB_NEXT = 8
MDB_NEXT_DUP = 9
MDB_NEXT_MULTIPLE = 10
MDB_NEXT_NODUP = 11
MDB_PREV = 12
MDB_PREV_DUP = 13
MDB_PREV_NODUP = 14
MDB_SET = 15
MDB_SET_KEY = 16
MDB_SET_RANGE = 17
Trait Implementations§
Source§impl Clone for MDB_cursor_op
impl Clone for MDB_cursor_op
Source§fn clone(&self) -> MDB_cursor_op
fn clone(&self) -> MDB_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 PartialEq for MDB_cursor_op
impl PartialEq for MDB_cursor_op
impl Copy for MDB_cursor_op
impl Eq for MDB_cursor_op
impl StructuralPartialEq for MDB_cursor_op
Auto Trait Implementations§
impl Freeze for MDB_cursor_op
impl RefUnwindSafe for MDB_cursor_op
impl Send for MDB_cursor_op
impl Sync for MDB_cursor_op
impl Unpin for MDB_cursor_op
impl UnwindSafe for MDB_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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)