pub struct BinarySnapshotRowCursor<'a> { /* private fields */ }Implementations§
Source§impl<'a> BinarySnapshotRowCursor<'a>
impl<'a> BinarySnapshotRowCursor<'a>
pub fn read_next_row<F, E>( &mut self, on_cell: F, ) -> Result<bool, BinarySnapshotVisitError<E>>
pub fn read_next_row_with_raw_visitor_trusted<V>(
&mut self,
visitor: &mut V,
) -> Result<bool, BinarySnapshotVisitError<V::Error>>where
V: BorrowedBinarySnapshotRawCellVisitor<'a>,
pub fn assert_done(&self) -> Result<()>
Auto Trait Implementations§
impl<'a> Freeze for BinarySnapshotRowCursor<'a>
impl<'a> RefUnwindSafe for BinarySnapshotRowCursor<'a>
impl<'a> Send for BinarySnapshotRowCursor<'a>
impl<'a> Sync for BinarySnapshotRowCursor<'a>
impl<'a> Unpin for BinarySnapshotRowCursor<'a>
impl<'a> UnsafeUnpin for BinarySnapshotRowCursor<'a>
impl<'a> UnwindSafe for BinarySnapshotRowCursor<'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