pub struct IndexPruningStats {
pub base_table: Option<TableReference>,
pub index_id: Option<String>,
pub post_index_pruning_parallel_input_count: Option<i64>,
pub pre_index_pruning_parallel_input_count: Option<i64>,
}Expand description
Statistics for index pruning.
This type is not used in any activity, and only used as part of another schema.
Fields§
§base_table: Option<TableReference>The base table reference.
index_id: Option<String>The index id.
post_index_pruning_parallel_input_count: Option<i64>The number of parallel inputs after index pruning.
pre_index_pruning_parallel_input_count: Option<i64>The number of parallel inputs before index pruning.
Trait Implementations§
Source§impl Clone for IndexPruningStats
impl Clone for IndexPruningStats
Source§fn clone(&self) -> IndexPruningStats
fn clone(&self) -> IndexPruningStats
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 IndexPruningStats
impl Debug for IndexPruningStats
Source§impl Default for IndexPruningStats
impl Default for IndexPruningStats
Source§fn default() -> IndexPruningStats
fn default() -> IndexPruningStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexPruningStats
impl<'de> Deserialize<'de> for IndexPruningStats
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 IndexPruningStats
impl Serialize for IndexPruningStats
impl Part for IndexPruningStats
Auto Trait Implementations§
impl Freeze for IndexPruningStats
impl RefUnwindSafe for IndexPruningStats
impl Send for IndexPruningStats
impl Sync for IndexPruningStats
impl Unpin for IndexPruningStats
impl UnwindSafe for IndexPruningStats
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