pub struct PruningStats {
pub post_cmeta_pruning_parallel_input_count: Option<i64>,
pub post_cmeta_pruning_partition_count: Option<i64>,
pub pre_cmeta_pruning_parallel_input_count: Option<i64>,
}Expand description
The column metadata index pruning statistics.
This type is not used in any activity, and only used as part of another schema.
Fields§
§post_cmeta_pruning_parallel_input_count: Option<i64>The number of parallel inputs matched.
post_cmeta_pruning_partition_count: Option<i64>The number of partitions matched.
pre_cmeta_pruning_parallel_input_count: Option<i64>The number of parallel inputs scanned.
Trait Implementations§
Source§impl Clone for PruningStats
impl Clone for PruningStats
Source§fn clone(&self) -> PruningStats
fn clone(&self) -> PruningStats
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 moreSource§impl Debug for PruningStats
impl Debug for PruningStats
Source§impl Default for PruningStats
impl Default for PruningStats
Source§fn default() -> PruningStats
fn default() -> PruningStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PruningStats
impl<'de> Deserialize<'de> for PruningStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for PruningStats
impl Serialize for PruningStats
impl Part for PruningStats
Auto Trait Implementations§
impl Freeze for PruningStats
impl RefUnwindSafe for PruningStats
impl Send for PruningStats
impl Sync for PruningStats
impl Unpin for PruningStats
impl UnwindSafe for PruningStats
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