pub struct ParallelResult {
pub task_id: usize,
pub rows_processed: usize,
pub rows_passed_filter: usize,
pub execution_time_ms: u64,
}Expand description
Result from parallel query execution
Fields§
§task_id: usize§rows_processed: usize§rows_passed_filter: usize§execution_time_ms: u64Trait Implementations§
Source§impl Clone for ParallelResult
impl Clone for ParallelResult
Source§fn clone(&self) -> ParallelResult
fn clone(&self) -> ParallelResult
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 moreSource§impl Debug for ParallelResult
impl Debug for ParallelResult
Source§impl PartialEq for ParallelResult
impl PartialEq for ParallelResult
Source§fn eq(&self, other: &ParallelResult) -> bool
fn eq(&self, other: &ParallelResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParallelResult
Auto Trait Implementations§
impl Freeze for ParallelResult
impl RefUnwindSafe for ParallelResult
impl Send for ParallelResult
impl Sync for ParallelResult
impl Unpin for ParallelResult
impl UnsafeUnpin for ParallelResult
impl UnwindSafe for ParallelResult
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