pub struct CursorToKeyIter<'a> { /* private fields */ }
Implementations§
Source§impl<'a> CursorToKeyIter<'a>
impl<'a> CursorToKeyIter<'a>
pub fn new<K: ToMdbValue + 'a>(end_key: &'a K) -> CursorToKeyIter<'a>
Trait Implementations§
Source§impl<'a> Debug for CursorToKeyIter<'a>
impl<'a> Debug for CursorToKeyIter<'a>
Source§impl IterateCursor for CursorToKeyIter<'_>
impl IterateCursor for CursorToKeyIter<'_>
Source§fn init_cursor<'a, 'b: 'a>(&'a self, cursor: &mut Cursor<'b>) -> bool
fn init_cursor<'a, 'b: 'a>(&'a self, cursor: &mut Cursor<'b>) -> bool
Returns true if initialization successful, for example that
the key exists.
Source§fn move_to_next<'i, 'c: 'i>(&'i self, cursor: &'c mut Cursor<'c>) -> bool
fn move_to_next<'i, 'c: 'i>(&'i self, cursor: &'c mut Cursor<'c>) -> bool
Returns true if there is still data and iterator is in correct range
Auto Trait Implementations§
impl<'a> Freeze for CursorToKeyIter<'a>
impl<'a> RefUnwindSafe for CursorToKeyIter<'a>
impl<'a> !Send for CursorToKeyIter<'a>
impl<'a> !Sync for CursorToKeyIter<'a>
impl<'a> Unpin for CursorToKeyIter<'a>
impl<'a> UnwindSafe for CursorToKeyIter<'a>
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