pub trait FullTextSearchConfig {
// Required method
fn include_rank(&self) -> bool;
// Provided methods
fn fuzzy_threshold(&self) -> Option<f64> { ... }
fn fuzzy_query(&self) -> Option<&str> { ... }
}pub trait FullTextSearchConfig {
// Required method
fn include_rank(&self) -> bool;
// Provided methods
fn fuzzy_threshold(&self) -> Option<f64> { ... }
fn fuzzy_query(&self) -> Option<&str> { ... }
}