Struct rocks::metadata::LevelMetaData [] [src]

pub struct LevelMetaData {
    pub level: u32,
    pub size: u64,
    pub files: Vec<SstFileMetaData>,
}

The metadata that describes a level.

Fields

The level which this meta data describes.

The size of this level in bytes, which is equal to the sum of the file size of its "files".

The metadata of all sst files in this level.

Trait Implementations

impl Debug for LevelMetaData
[src]

Formats the value using the given formatter.