Skip to main content

FullTextSearchConfigBuilder

Trait FullTextSearchConfigBuilder 

Source
pub trait FullTextSearchConfigBuilder: FullTextSearchConfig {
    // Required methods
    fn new_with_query(query: String) -> Self;
    fn apply_language(self, language: Option<String>) -> Self;
    fn apply_rank(self, include_rank: Option<bool>) -> Self;
}

Required Methods§

Source

fn new_with_query(query: String) -> Self

Source

fn apply_language(self, language: Option<String>) -> Self

Source

fn apply_rank(self, include_rank: Option<bool>) -> Self

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§