mito2::sst::index

Trait IndexerBuilder

Source
pub trait IndexerBuilder {
    // Required method
    fn build<'life0, 'async_trait>(
        &'life0 self,
        file_id: FileId,
    ) -> Pin<Box<dyn Future<Output = Indexer> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn build<'life0, 'async_trait>( &'life0 self, file_id: FileId, ) -> Pin<Box<dyn Future<Output = Indexer> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Builds indexer of given file id to [index_file_path].

Implementors§