pub struct Analysis<Q, C> {
pub query: Q,
pub candidate: C,
pub score: f64,
pub exact: bool,
pub scores: Vec<Score>,
}Fields§
§query: Q§candidate: C§score: f64§exact: bool§scores: Vec<Score>Trait Implementations§
Auto Trait Implementations§
impl<Q, C> Freeze for Analysis<Q, C>
impl<Q, C> RefUnwindSafe for Analysis<Q, C>where
Q: RefUnwindSafe,
C: RefUnwindSafe,
impl<Q, C> Send for Analysis<Q, C>
impl<Q, C> Sync for Analysis<Q, C>
impl<Q, C> Unpin for Analysis<Q, C>
impl<Q, C> UnwindSafe for Analysis<Q, C>where
Q: UnwindSafe,
C: 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