pub struct TimestampStatistics {
pub min_timestamp: i64,
pub max_timestamp: i64,
pub min_deletion_time: i64,
pub max_deletion_time: i64,
pub min_ttl: Option<i64>,
pub max_ttl: Option<i64>,
pub rows_with_ttl: u64,
}Expand description
Timestamp range and TTL statistics
Fields§
§min_timestamp: i64Minimum timestamp in the SSTable (microseconds since epoch)
max_timestamp: i64Maximum timestamp in the SSTable (microseconds since epoch)
min_deletion_time: i64Minimum deletion time (for tombstones)
max_deletion_time: i64Maximum deletion time (for tombstones)
min_ttl: Option<i64>Minimum TTL value
max_ttl: Option<i64>Maximum TTL value
rows_with_ttl: u64Number of rows with TTL
Trait Implementations§
Source§impl Clone for TimestampStatistics
impl Clone for TimestampStatistics
Source§fn clone(&self) -> TimestampStatistics
fn clone(&self) -> TimestampStatistics
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 TimestampStatistics
impl Debug for TimestampStatistics
Source§impl<'de> Deserialize<'de> for TimestampStatistics
impl<'de> Deserialize<'de> for TimestampStatistics
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 TimestampStatistics
impl RefUnwindSafe for TimestampStatistics
impl Send for TimestampStatistics
impl Sync for TimestampStatistics
impl Unpin for TimestampStatistics
impl UnsafeUnpin for TimestampStatistics
impl UnwindSafe for TimestampStatistics
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