Struct rocks::metadata::SstFileMetaData [] [src]

pub struct SstFileMetaData {
    pub size: u64,
    pub name: String,
    pub db_path: String,
    pub smallest_seqno: SequenceNumber,
    pub largest_seqno: SequenceNumber,
    pub smallestkey: Vec<u8>,
    pub largestkey: Vec<u8>,
    pub being_compacted: bool,
}

The metadata that describes a SST file.

Fields

File size in bytes.

The name of the file.

The full path where the file locates.

Smallest sequence number in file.

Largest sequence number in file.

Smallest user defined key in the file.

Largest user defined key in the file.

true if the file is currently being compacted.

Trait Implementations

impl Debug for SstFileMetaData
[src]

Formats the value using the given formatter.