pub struct QueryResult {
pub blocks: Vec<Block>,
pub progress: Progress,
}Expand description
Result of a SELECT query, containing data blocks and progress
information.
Fields§
§blocks: Vec<Block>Result blocks
progress: ProgressProgress information
Implementations§
Auto Trait Implementations§
impl Freeze for QueryResult
impl !RefUnwindSafe for QueryResult
impl Send for QueryResult
impl Sync for QueryResult
impl Unpin for QueryResult
impl !UnwindSafe for QueryResult
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