pub struct ScoredRecallCandidate {
pub hit: RecallHit,
pub matched_terms: Vec<String>,
}Fields§
§hit: RecallHit§matched_terms: Vec<String>Trait Implementations§
Source§impl Clone for ScoredRecallCandidate
impl Clone for ScoredRecallCandidate
Source§fn clone(&self) -> ScoredRecallCandidate
fn clone(&self) -> ScoredRecallCandidate
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 ScoredRecallCandidate
impl Debug for ScoredRecallCandidate
Source§impl PartialEq for ScoredRecallCandidate
impl PartialEq for ScoredRecallCandidate
Source§fn eq(&self, other: &ScoredRecallCandidate) -> bool
fn eq(&self, other: &ScoredRecallCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScoredRecallCandidate
Auto Trait Implementations§
impl Freeze for ScoredRecallCandidate
impl RefUnwindSafe for ScoredRecallCandidate
impl Send for ScoredRecallCandidate
impl Sync for ScoredRecallCandidate
impl Unpin for ScoredRecallCandidate
impl UnsafeUnpin for ScoredRecallCandidate
impl UnwindSafe for ScoredRecallCandidate
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