pub struct IndexingOptions {
pub case_sensitive: bool,
pub ignore_spaces: bool,
pub scope: usize,
pub full: bool,
pub algo: ScoringAlgo,
}
Expand description
Options related to the indexing. See also CliOptions.
Fields§
§case_sensitive: bool
§ignore_spaces: bool
§scope: usize
§full: bool
§algo: ScoringAlgo
Trait Implementations§
Source§impl Debug for IndexingOptions
impl Debug for IndexingOptions
Auto Trait Implementations§
impl Freeze for IndexingOptions
impl RefUnwindSafe for IndexingOptions
impl Send for IndexingOptions
impl Sync for IndexingOptions
impl Unpin for IndexingOptions
impl UnwindSafe for IndexingOptions
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