pub struct ResultSet {
pub columns: Vec<String>,
pub rows: Vec<Vec<Value>>,
}Expand description
The result of executing a SQL query.
Fields§
§columns: Vec<String>Column names in the result.
rows: Vec<Vec<Value>>Row data.
Implementations§
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 UnsafeUnpin 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