pub struct Verdict<Query, Candidate> {
pub query: Query,
pub candidate: Candidate,
pub resemblance: f64,
pub perfect: bool,
pub facets: Vec<Facet>,
}Fields§
§query: Query§candidate: Candidate§resemblance: f64§perfect: bool§facets: Vec<Facet>Trait Implementations§
Auto Trait Implementations§
impl<Query, Candidate> Freeze for Verdict<Query, Candidate>
impl<Query, Candidate> RefUnwindSafe for Verdict<Query, Candidate>where
Query: RefUnwindSafe,
Candidate: RefUnwindSafe,
impl<Query, Candidate> Send for Verdict<Query, Candidate>
impl<Query, Candidate> Sync for Verdict<Query, Candidate>
impl<Query, Candidate> Unpin for Verdict<Query, Candidate>
impl<Query, Candidate> UnwindSafe for Verdict<Query, Candidate>where
Query: UnwindSafe,
Candidate: UnwindSafe,
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