pub struct ResultSet { /* private fields */ }Expand description
A single result set within a multi-result batch.
Implementations§
Source§impl ResultSet
impl ResultSet
Sourcepub fn rows_remaining(&self) -> usize
pub fn rows_remaining(&self) -> usize
Get the number of rows remaining.
Sourcepub fn collect_all(&mut self) -> Vec<Row>
pub fn collect_all(&mut self) -> Vec<Row>
Collect all remaining rows into a vector.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResultSet
impl RefUnwindSafe for ResultSet
impl Send for ResultSet
impl Sync for ResultSet
impl Unpin for ResultSet
impl UnwindSafe for ResultSet
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