pub struct ReplQueryResult {
pub result: QueryResult,
pub metadata: QueryMetadata,
pub schema: Option<TableSchema>,
}Expand description
Query execution result with metadata
Fields§
§result: QueryResultQuery result data
metadata: QueryMetadataExecution metadata
schema: Option<TableSchema>Schema information (if available)
Trait Implementations§
Source§impl Clone for ReplQueryResult
impl Clone for ReplQueryResult
Source§fn clone(&self) -> ReplQueryResult
fn clone(&self) -> ReplQueryResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReplQueryResult
impl RefUnwindSafe for ReplQueryResult
impl Send for ReplQueryResult
impl Sync for ReplQueryResult
impl Unpin for ReplQueryResult
impl UnsafeUnpin for ReplQueryResult
impl UnwindSafe for ReplQueryResult
Blanket Implementations§
impl<T> Allocation for T
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