pub enum MatchingStrategy {
Exact,
Fuzzy(FuzzyOptions),
}Expand description
Defines different matching strategies for finding relevant training examples
Variants§
Exact
Exact match requiring full equality (case-insensitive)
Fuzzy(FuzzyOptions)
Fuzzy matching with configurable options
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MatchingStrategy
impl RefUnwindSafe for MatchingStrategy
impl Send for MatchingStrategy
impl Sync for MatchingStrategy
impl Unpin for MatchingStrategy
impl UnsafeUnpin for MatchingStrategy
impl UnwindSafe for MatchingStrategy
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