index::fulltext_index::create

Trait FulltextIndexCreator

Source
pub trait FulltextIndexCreator: Send {
    // Required methods
    fn push_text<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        text: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn finish<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 mut self,
        puffin_writer: &'life1 mut (impl 'async_trait + PuffinWriter + Send),
        blob_key: &'life2 str,
        put_options: PutOptions,
    ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
    fn abort<'life0, 'async_trait>(
        &'life0 mut self,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn memory_usage(&self) -> usize;
}
Expand description

FulltextIndexCreator is for creating a fulltext index.

Required Methods§

Source

fn push_text<'life0, 'life1, 'async_trait>( &'life0 mut self, text: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Pushes a text to the index.

Source

fn finish<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, puffin_writer: &'life1 mut (impl 'async_trait + PuffinWriter + Send), blob_key: &'life2 str, put_options: PutOptions, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Finalizes the creation of the index.

Source

fn abort<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Aborts the creation of the index.

Source

fn memory_usage(&self) -> usize

Returns the memory usage in bytes during the creation of the index.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§