Struct odbc_api::RowSetCursor
source · [−]pub struct RowSetCursor<C: Cursor, B> { /* private fields */ }
Expand description
A row set cursor iterates in blocks over row sets, filling them in buffers, instead of iterating the result set row by row. This is usually much faster.
Implementations
Trait Implementations
Auto Trait Implementations
impl<C, B> RefUnwindSafe for RowSetCursor<C, B> where
B: RefUnwindSafe,
C: RefUnwindSafe,
impl<C, B> Send for RowSetCursor<C, B> where
B: Send,
C: Send,
impl<C, B> Sync for RowSetCursor<C, B> where
B: Sync,
C: Sync,
impl<C, B> Unpin for RowSetCursor<C, B> where
B: Unpin,
C: Unpin,
impl<C, B> UnwindSafe for RowSetCursor<C, B> where
B: UnwindSafe,
C: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more