pub enum QueryResultData {
Entries(Vec<Entry>),
Schema(SchemaInfo),
}Expand description
Query result type - can be either entries or schema information
Variants§
Entries(Vec<Entry>)
Standard entry query results
Schema(SchemaInfo)
Schema query results (SHOW TABLES, DESCRIBE)
Trait Implementations§
Source§impl Clone for QueryResultData
impl Clone for QueryResultData
Source§fn clone(&self) -> QueryResultData
fn clone(&self) -> QueryResultData
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 QueryResultData
impl RefUnwindSafe for QueryResultData
impl Send for QueryResultData
impl Sync for QueryResultData
impl Unpin for QueryResultData
impl UnsafeUnpin for QueryResultData
impl UnwindSafe for QueryResultData
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