pub struct QueryDataParts {
pub names: Option<Vec<String>>,
pub types: Option<Vec<Type>>,
pub rows: Vec<Vec<Value>>,
}Expand description
Query data parts
Fields§
§names: Option<Vec<String>>Names
types: Option<Vec<Type>>Types
rows: Vec<Vec<Value>>Rows
Trait Implementations§
Source§impl Clone for QueryDataParts
impl Clone for QueryDataParts
Source§fn clone(&self) -> QueryDataParts
fn clone(&self) -> QueryDataParts
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 moreSource§impl Debug for QueryDataParts
impl Debug for QueryDataParts
Source§impl PartialEq for QueryDataParts
impl PartialEq for QueryDataParts
impl StructuralPartialEq for QueryDataParts
Auto Trait Implementations§
impl Freeze for QueryDataParts
impl RefUnwindSafe for QueryDataParts
impl Send for QueryDataParts
impl Sync for QueryDataParts
impl Unpin for QueryDataParts
impl UnwindSafe for QueryDataParts
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