pub struct DetailedConstraintEvaluation<Sc: Score> {
pub total_score: Sc,
pub match_count: usize,
pub matches: Vec<DetailedConstraintMatch<Sc>>,
}Fields§
§total_score: Sc§match_count: usize§matches: Vec<DetailedConstraintMatch<Sc>>Implementations§
Source§impl<Sc: Score> DetailedConstraintEvaluation<Sc>
impl<Sc: Score> DetailedConstraintEvaluation<Sc>
Trait Implementations§
Source§impl<Sc: Clone + Score> Clone for DetailedConstraintEvaluation<Sc>
impl<Sc: Clone + Score> Clone for DetailedConstraintEvaluation<Sc>
Source§fn clone(&self) -> DetailedConstraintEvaluation<Sc>
fn clone(&self) -> DetailedConstraintEvaluation<Sc>
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 moreAuto Trait Implementations§
impl<Sc> Freeze for DetailedConstraintEvaluation<Sc>where
Sc: Freeze,
impl<Sc> !RefUnwindSafe for DetailedConstraintEvaluation<Sc>
impl<Sc> Send for DetailedConstraintEvaluation<Sc>
impl<Sc> Sync for DetailedConstraintEvaluation<Sc>
impl<Sc> Unpin for DetailedConstraintEvaluation<Sc>where
Sc: Unpin,
impl<Sc> UnsafeUnpin for DetailedConstraintEvaluation<Sc>where
Sc: UnsafeUnpin,
impl<Sc> !UnwindSafe for DetailedConstraintEvaluation<Sc>
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