Struct rocksdb::LiveFile [−][src]
pub struct LiveFile { pub name: String, pub size: usize, pub level: i32, pub start_key: Option<Vec<u8>>, pub end_key: Option<Vec<u8>>, pub num_entries: u64, pub num_deletions: u64, }
Expand description
The metadata that describes a SST file
Fields
name: String
Name of the file
size: usize
Size of the file
level: i32
Level at which this file resides
start_key: Option<Vec<u8>>
Smallest user defined key in the file
end_key: Option<Vec<u8>>
Largest user defined key in the file
num_entries: u64
Number of entries/alive keys in the file
num_deletions: u64
Number of deletions/tomb key(s) in the file
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LiveFile
impl UnwindSafe for LiveFile
Blanket Implementations
Mutably borrows from an owned value. Read more