pub struct SqlRows {
pub columns: Vec<String>,
pub rows: Vec<Vec<SqlValue>>,
}Expand description
The rows a SqlTransaction::query returned: column names plus row-major
cells (each row’s length equals columns.len()).
Fields§
§columns: Vec<String>Column names, in result order.
rows: Vec<Vec<SqlValue>>Rows, each a vector of cells aligned to columns.
Trait Implementations§
impl StructuralPartialEq for SqlRows
Auto Trait Implementations§
impl Freeze for SqlRows
impl RefUnwindSafe for SqlRows
impl Send for SqlRows
impl Sync for SqlRows
impl Unpin for SqlRows
impl UnsafeUnpin for SqlRows
impl UnwindSafe for SqlRows
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