Struct odbc_api::RowSetCursorAsync
source · [−]pub struct RowSetCursorAsync<C, B> where
C: AsStatementRef, {
pub buffer: B,
pub cursor: C,
}Expand description
Asynchronously iterates in blocks (called row sets) over a result set, filling a buffers with a lot of rows at once, instead of iterating the result set row by row. This is usually much faster.
Fields
buffer: Bcursor: CImplementations
sourceimpl<C, B> RowSetCursorAsync<C, B> where
C: AsStatementRef,
impl<C, B> RowSetCursorAsync<C, B> where
C: AsStatementRef,
Trait Implementations
sourceimpl<C, B> Drop for RowSetCursorAsync<C, B> where
C: AsStatementRef,
impl<C, B> Drop for RowSetCursorAsync<C, B> where
C: AsStatementRef,
Auto Trait Implementations
impl<C, B> RefUnwindSafe for RowSetCursorAsync<C, B> where
B: RefUnwindSafe,
C: RefUnwindSafe,
impl<C, B> Send for RowSetCursorAsync<C, B> where
B: Send,
C: Send,
impl<C, B> Sync for RowSetCursorAsync<C, B> where
B: Sync,
C: Sync,
impl<C, B> Unpin for RowSetCursorAsync<C, B> where
B: Unpin,
C: Unpin,
impl<C, B> UnwindSafe for RowSetCursorAsync<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