pub struct SSTableInfoMetadata {Show 18 fields
pub file_path: PathBuf,
pub file_type: SSTableFileType,
pub file_size: u64,
pub detected_version: Option<String>,
pub validated_version: Option<String>,
pub format_features: Vec<String>,
pub schema_info: Option<SchemaInfo>,
pub validation_result: Option<ValidationResult>,
pub directory_info: Option<DirectoryInfo>,
pub bulletproof_info: Option<BulletproofInfo>,
pub statistics_file: Option<(PathBuf, String)>,
pub entry_count: u64,
pub table_count: u32,
pub block_count: u32,
pub index_size: u64,
pub bloom_filter_size: u64,
pub compression_ratio: f64,
pub cache_hit_rate: f64,
}Expand description
Complete SSTable information metadata
Fields§
§file_path: PathBuf§file_type: SSTableFileType§file_size: u64§detected_version: Option<String>§validated_version: Option<String>§format_features: Vec<String>§schema_info: Option<SchemaInfo>§validation_result: Option<ValidationResult>§directory_info: Option<DirectoryInfo>§bulletproof_info: Option<BulletproofInfo>§statistics_file: Option<(PathBuf, String)>§entry_count: u64§table_count: u32§block_count: u32§index_size: u64§bloom_filter_size: u64§compression_ratio: f64§cache_hit_rate: f64Trait Implementations§
Source§impl Clone for SSTableInfoMetadata
impl Clone for SSTableInfoMetadata
Source§fn clone(&self) -> SSTableInfoMetadata
fn clone(&self) -> SSTableInfoMetadata
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 SSTableInfoMetadata
impl Debug for SSTableInfoMetadata
Auto Trait Implementations§
impl Freeze for SSTableInfoMetadata
impl RefUnwindSafe for SSTableInfoMetadata
impl Send for SSTableInfoMetadata
impl Sync for SSTableInfoMetadata
impl Unpin for SSTableInfoMetadata
impl UnsafeUnpin for SSTableInfoMetadata
impl UnwindSafe for SSTableInfoMetadata
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more