pub struct IndexTreeWalker<K>{ /* private fields */ }Expand description
Stateful forward range-scan cursor over leaf entries.
Implementations§
Source§impl<K> IndexTreeWalker<K>
impl<K> IndexTreeWalker<K>
Sourcepub fn next(
&mut self,
mm: &mut impl MemoryAccess,
) -> MemoryResult<Option<RecordAddress>>
pub fn next( &mut self, mm: &mut impl MemoryAccess, ) -> MemoryResult<Option<RecordAddress>>
Returns the next pointer in the scan, or None when exhausted.
Auto Trait Implementations§
impl<K> Freeze for IndexTreeWalker<K>where
K: Freeze,
impl<K> RefUnwindSafe for IndexTreeWalker<K>where
K: RefUnwindSafe,
impl<K> Send for IndexTreeWalker<K>where
K: Send,
impl<K> Sync for IndexTreeWalker<K>where
K: Sync,
impl<K> Unpin for IndexTreeWalker<K>where
K: Unpin,
impl<K> UnsafeUnpin for IndexTreeWalker<K>where
K: UnsafeUnpin,
impl<K> UnwindSafe for IndexTreeWalker<K>where
K: UnwindSafe,
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