pub struct Verdict {
pub class: Option<CloneClass>,
pub confidence: Option<Confidence>,
pub breakdown: SimilarityBreakdown,
pub alignment: Alignment,
}Expand description
The outcome of verifying a candidate pair.
Fields§
§class: Option<CloneClass>The clone class, or None when the pair is not a clone.
confidence: Option<Confidence>Confidence of the classification; Some exactly when class is.
breakdown: SimilarityBreakdownThe similarity breakdown.
alignment: AlignmentThe statement alignment.
Trait Implementations§
impl StructuralPartialEq for Verdict
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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