pub struct EvidenceEntry {
pub kind: EvidenceKind,
pub bayes_factor: f64,
pub description: EvidenceDescription,
}Expand description
A single piece of evidence contributing to the match score.
Fields§
§kind: EvidenceKindType of evidence.
bayes_factor: f64Bayes factor: likelihood ratio P(evidence | relevant) / P(evidence | ¬relevant). Values > 1.0 support relevance, < 1.0 oppose it.
description: EvidenceDescriptionHuman-readable explanation.
Trait Implementations§
Source§impl Clone for EvidenceEntry
impl Clone for EvidenceEntry
Source§fn clone(&self) -> EvidenceEntry
fn clone(&self) -> EvidenceEntry
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 Debug for EvidenceEntry
impl Debug for EvidenceEntry
Auto Trait Implementations§
impl Freeze for EvidenceEntry
impl RefUnwindSafe for EvidenceEntry
impl Send for EvidenceEntry
impl Sync for EvidenceEntry
impl Unpin for EvidenceEntry
impl UnsafeUnpin for EvidenceEntry
impl UnwindSafe for EvidenceEntry
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