mito2::access_layer

Trait FilePathProvider

Source
pub trait FilePathProvider: Send + Sync {
    // Required methods
    fn build_index_file_path(&self, file_id: FileId) -> String;
    fn build_sst_file_path(&self, file_id: FileId) -> String;
}
Expand description

Path provider for SST file and index file.

Required Methods§

Source

fn build_index_file_path(&self, file_id: FileId) -> String

Creates index file path of given file id.

Source

fn build_sst_file_path(&self, file_id: FileId) -> String

Creates SST file path of given file id.

Implementors§