pub struct TokenizeOptions {
pub min_word_length: usize,
pub to_lowercase: bool,
}Expand description
Configuration options for tokenization
Fields§
§min_word_length: usize§to_lowercase: boolTrait Implementations§
Source§impl Clone for TokenizeOptions
impl Clone for TokenizeOptions
Source§fn clone(&self) -> TokenizeOptions
fn clone(&self) -> TokenizeOptions
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 TokenizeOptions
impl Debug for TokenizeOptions
Auto Trait Implementations§
impl Freeze for TokenizeOptions
impl RefUnwindSafe for TokenizeOptions
impl Send for TokenizeOptions
impl Sync for TokenizeOptions
impl Unpin for TokenizeOptions
impl UnwindSafe for TokenizeOptions
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