pub struct SSTableFileInfo {
pub path: PathBuf,
pub size_bytes: u64,
pub version: Option<CassandraVersion>,
pub compression: Option<String>,
pub estimated_rows: usize,
pub health_status: FileHealthStatus,
}Expand description
SSTable file information
Fields§
§path: PathBufFile path
size_bytes: u64File size
version: Option<CassandraVersion>Cassandra version detected
compression: Option<String>Compression info
estimated_rows: usizeEstimated row count
health_status: FileHealthStatusHealth status
Trait Implementations§
Source§impl Clone for SSTableFileInfo
impl Clone for SSTableFileInfo
Source§fn clone(&self) -> SSTableFileInfo
fn clone(&self) -> SSTableFileInfo
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 moreAuto Trait Implementations§
impl Freeze for SSTableFileInfo
impl RefUnwindSafe for SSTableFileInfo
impl Send for SSTableFileInfo
impl Sync for SSTableFileInfo
impl Unpin for SSTableFileInfo
impl UnsafeUnpin for SSTableFileInfo
impl UnwindSafe for SSTableFileInfo
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