pub struct InfiLanguageConfigOpts {
pub stop_words: Option<Vec<String>>,
pub ignore_stop_words: Option<bool>,
pub stemmer: Option<String>,
pub max_term_len: Option<usize>,
}
Fields§
§stop_words: Option<Vec<String>>
§ignore_stop_words: Option<bool>
§stemmer: Option<String>
§max_term_len: Option<usize>
Auto Trait Implementations§
impl Freeze for InfiLanguageConfigOpts
impl RefUnwindSafe for InfiLanguageConfigOpts
impl Send for InfiLanguageConfigOpts
impl Sync for InfiLanguageConfigOpts
impl Unpin for InfiLanguageConfigOpts
impl UnwindSafe for InfiLanguageConfigOpts
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