pub struct NdjsonExecutionStats {Show 16 fields
pub rows_scanned: usize,
pub rows_emitted: usize,
pub rows_filtered: usize,
pub duplicate_rows: usize,
pub direct_filter_rows: usize,
pub fallback_filter_rows: usize,
pub direct_key_rows: usize,
pub fallback_key_rows: usize,
pub direct_project_rows: usize,
pub fallback_project_rows: usize,
pub parallel_partitions: usize,
pub hint_learned_rows: usize,
pub hint_rejected_rows: usize,
pub hint_rows: usize,
pub hint_layout_misses: usize,
pub hint_disabled: bool,
}Fields§
§rows_scanned: usize§rows_emitted: usize§rows_filtered: usize§duplicate_rows: usize§direct_filter_rows: usize§fallback_filter_rows: usize§direct_key_rows: usize§fallback_key_rows: usize§direct_project_rows: usize§fallback_project_rows: usize§parallel_partitions: usize§hint_learned_rows: usize§hint_rejected_rows: usize§hint_rows: usize§hint_layout_misses: usize§hint_disabled: boolTrait Implementations§
Source§impl Clone for NdjsonExecutionStats
impl Clone for NdjsonExecutionStats
Source§fn clone(&self) -> NdjsonExecutionStats
fn clone(&self) -> NdjsonExecutionStats
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 NdjsonExecutionStats
impl Debug for NdjsonExecutionStats
Source§impl Default for NdjsonExecutionStats
impl Default for NdjsonExecutionStats
Source§fn default() -> NdjsonExecutionStats
fn default() -> NdjsonExecutionStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for NdjsonExecutionStats
impl PartialEq for NdjsonExecutionStats
Source§fn eq(&self, other: &NdjsonExecutionStats) -> bool
fn eq(&self, other: &NdjsonExecutionStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NdjsonExecutionStats
impl StructuralPartialEq for NdjsonExecutionStats
Auto Trait Implementations§
impl Freeze for NdjsonExecutionStats
impl RefUnwindSafe for NdjsonExecutionStats
impl Send for NdjsonExecutionStats
impl Sync for NdjsonExecutionStats
impl Unpin for NdjsonExecutionStats
impl UnsafeUnpin for NdjsonExecutionStats
impl UnwindSafe for NdjsonExecutionStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more