Skip to main content

AdvancedSearcher

Trait AdvancedSearcher 

Source
pub trait AdvancedSearcher: Send + Sync {
    // Required method
    fn advanced_search<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        query: &'life1 str,
        limit: usize,
        opts: &'life2 SearchOptions,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<SemanticResult>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
}

Required Methods§

Implementors§