pub struct StructuralSibling {
pub unit: usize,
pub clone_type: CloneClass,
pub confidence: Confidence,
pub breakdown: SimilarityBreakdown,
}Expand description
One incomplete local mirror attached to an established primary group.
Fields§
§unit: usizeThe ungrouped unit. It is never added to StructuralGroup::members.
clone_type: CloneClassThe verifier’s clone classification, or Type-3 for a relaxed-only hit.
confidence: ConfidenceThe verifier confidence, clamped to low below the normal Type-3 threshold even when an exact-structure shortcut classified the pair.
breakdown: SimilarityBreakdownThe canonical-to-sibling similarity breakdown.
Trait Implementations§
Source§impl Clone for StructuralSibling
impl Clone for StructuralSibling
Source§fn clone(&self) -> StructuralSibling
fn clone(&self) -> StructuralSibling
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StructuralSibling
impl Debug for StructuralSibling
Source§impl PartialEq for StructuralSibling
impl PartialEq for StructuralSibling
impl StructuralPartialEq for StructuralSibling
Auto Trait Implementations§
impl Freeze for StructuralSibling
impl RefUnwindSafe for StructuralSibling
impl Send for StructuralSibling
impl Sync for StructuralSibling
impl Unpin for StructuralSibling
impl UnsafeUnpin for StructuralSibling
impl UnwindSafe for StructuralSibling
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