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§
Sourcefn build_index_file_path(&self, file_id: FileId) -> String
fn build_index_file_path(&self, file_id: FileId) -> String
Creates index file path of given file id.
Sourcefn build_sst_file_path(&self, file_id: FileId) -> String
fn build_sst_file_path(&self, file_id: FileId) -> String
Creates SST file path of given file id.