pub struct SearchIndexOptions {
pub order: Option<usize>,
pub stop_words: Option<HashSet<String>>,
pub min_keyword_length: Option<usize>,
}Fields§
§order: Option<usize>§stop_words: Option<HashSet<String>>§min_keyword_length: Option<usize>Trait Implementations§
Source§impl Clone for SearchIndexOptions
impl Clone for SearchIndexOptions
Source§fn clone(&self) -> SearchIndexOptions
fn clone(&self) -> SearchIndexOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SearchIndexOptions
impl Debug for SearchIndexOptions
Source§impl Default for SearchIndexOptions
impl Default for SearchIndexOptions
Source§fn default() -> SearchIndexOptions
fn default() -> SearchIndexOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SearchIndexOptions
impl RefUnwindSafe for SearchIndexOptions
impl Send for SearchIndexOptions
impl Sync for SearchIndexOptions
impl Unpin for SearchIndexOptions
impl UnsafeUnpin for SearchIndexOptions
impl UnwindSafe for SearchIndexOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more