pub struct ResultBatch {
pub columns: Vec<String>,
pub rows: Vec<Row>,
}Expand description
A batch of result rows.
Fields§
§columns: Vec<String>§rows: Vec<Row>Implementations§
Trait Implementations§
Source§impl Clone for ResultBatch
impl Clone for ResultBatch
Source§fn clone(&self) -> ResultBatch
fn clone(&self) -> ResultBatch
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResultBatch
impl RefUnwindSafe for ResultBatch
impl Send for ResultBatch
impl Sync for ResultBatch
impl Unpin for ResultBatch
impl UnsafeUnpin for ResultBatch
impl UnwindSafe for ResultBatch
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