pub struct StatisticsSummary {
pub total_rows: u64,
pub live_data_percentage: f64,
pub compression_efficiency: f64,
pub timestamp_range_days: f64,
pub largest_partition_mb: f64,
pub data_efficiency: f64,
pub query_performance_hints: Vec<String>,
pub storage_recommendations: Vec<String>,
pub health_score: f64,
}Expand description
Human-readable statistics summary
Fields§
§total_rows: u64§live_data_percentage: f64§compression_efficiency: f64§timestamp_range_days: f64§largest_partition_mb: f64§data_efficiency: f64§query_performance_hints: Vec<String>§storage_recommendations: Vec<String>§health_score: f64Trait Implementations§
Source§impl Clone for StatisticsSummary
impl Clone for StatisticsSummary
Source§fn clone(&self) -> StatisticsSummary
fn clone(&self) -> StatisticsSummary
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 StatisticsSummary
impl Debug for StatisticsSummary
Source§impl<'de> Deserialize<'de> for StatisticsSummary
impl<'de> Deserialize<'de> for StatisticsSummary
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
Auto Trait Implementations§
impl Freeze for StatisticsSummary
impl RefUnwindSafe for StatisticsSummary
impl Send for StatisticsSummary
impl Sync for StatisticsSummary
impl Unpin for StatisticsSummary
impl UnsafeUnpin for StatisticsSummary
impl UnwindSafe for StatisticsSummary
Blanket Implementations§
impl<T> Allocation for T
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