pub struct MetadataCacheStatistics {
pub table_metadata_cache_usage: Option<Vec<TableMetadataCacheUsage>>,
}Expand description
Statistics for metadata caching in queried tables.
This type is not used in any activity, and only used as part of another schema.
Fields§
§table_metadata_cache_usage: Option<Vec<TableMetadataCacheUsage>>Set for the Metadata caching eligible tables referenced in the query.
Trait Implementations§
Source§impl Clone for MetadataCacheStatistics
impl Clone for MetadataCacheStatistics
Source§fn clone(&self) -> MetadataCacheStatistics
fn clone(&self) -> MetadataCacheStatistics
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 MetadataCacheStatistics
impl Debug for MetadataCacheStatistics
Source§impl Default for MetadataCacheStatistics
impl Default for MetadataCacheStatistics
Source§fn default() -> MetadataCacheStatistics
fn default() -> MetadataCacheStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetadataCacheStatistics
impl<'de> Deserialize<'de> for MetadataCacheStatistics
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 MetadataCacheStatistics
impl Serialize for MetadataCacheStatistics
impl Part for MetadataCacheStatistics
Auto Trait Implementations§
impl Freeze for MetadataCacheStatistics
impl RefUnwindSafe for MetadataCacheStatistics
impl Send for MetadataCacheStatistics
impl Sync for MetadataCacheStatistics
impl Unpin for MetadataCacheStatistics
impl UnwindSafe for MetadataCacheStatistics
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