pub struct MatcherOptions {
pub exact: Option<bool>,
pub trim: Option<bool>,
pub collapse_whitespace: Option<bool>,
pub normalizer: Option<Rc<NormalizerFn>>,
pub suggest: Option<bool>,
}
Fields§
§exact: Option<bool>
§trim: Option<bool>
§collapse_whitespace: Option<bool>
§normalizer: Option<Rc<NormalizerFn>>
§suggest: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for MatcherOptions
impl Clone for MatcherOptions
Source§fn clone(&self) -> MatcherOptions
fn clone(&self) -> MatcherOptions
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 Default for MatcherOptions
impl Default for MatcherOptions
Source§fn default() -> MatcherOptions
fn default() -> MatcherOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MatcherOptions
impl !RefUnwindSafe for MatcherOptions
impl !Send for MatcherOptions
impl !Sync for MatcherOptions
impl Unpin for MatcherOptions
impl !UnwindSafe for MatcherOptions
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