pub struct CursorItemIter<'a> { /* private fields */ }
Implementations§
Source§impl<'a> CursorItemIter<'a>
impl<'a> CursorItemIter<'a>
pub fn new<K: ToMdbValue + 'a>(key: &'a K) -> CursorItemIter<'a>
Trait Implementations§
Source§impl<'a> Debug for CursorItemIter<'a>
impl<'a> Debug for CursorItemIter<'a>
Source§impl IterateCursor for CursorItemIter<'_>
impl IterateCursor for CursorItemIter<'_>
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 CursorItemIter<'a>
impl<'a> RefUnwindSafe for CursorItemIter<'a>
impl<'a> !Send for CursorItemIter<'a>
impl<'a> !Sync for CursorItemIter<'a>
impl<'a> Unpin for CursorItemIter<'a>
impl<'a> UnwindSafe for CursorItemIter<'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