pub enum ScoringMode {
BM25(BM25Params),
BayesianBM25(BayesianBM25Params),
}Expand description
Scoring strategy for a text retrieval leaf.
Variants§
BM25(BM25Params)
BayesianBM25(BayesianBM25Params)
Trait Implementations§
Source§impl Clone for ScoringMode
impl Clone for ScoringMode
Source§fn clone(&self) -> ScoringMode
fn clone(&self) -> ScoringMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScoringMode
impl Debug for ScoringMode
Auto Trait Implementations§
impl Freeze for ScoringMode
impl RefUnwindSafe for ScoringMode
impl Send for ScoringMode
impl Sync for ScoringMode
impl Unpin for ScoringMode
impl UnsafeUnpin for ScoringMode
impl UnwindSafe for ScoringMode
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