Skip to main content

CloneGroupFinding

Struct CloneGroupFinding 

Source
pub struct CloneGroupFinding {
    pub group: CloneGroup,
    pub fingerprint: String,
    pub spread: usize,
    pub suggested_name: Option<String>,
    pub actions: Vec<CloneGroupAction>,
    pub introduced: Option<AuditIntroduced>,
    pub demotion_reason: Option<CloneDemotionReason>,
}
Expand description

Wire-shape envelope for a CloneGroup finding. Flattens the bare group via #[serde(flatten)] and carries a typed actions array plus the optional audit-mode introduced flag. The typed envelope replaced the legacy JSON post-pass injection; a guard test in crates/cli/src/report/json.rs rejects any reintroduced post-pass.

Fields§

§group: CloneGroup

The underlying clone group.

§fingerprint: String

Stable content fingerprint, usually dup:<8hex> and widened on rare report collisions. Addressable via fallow dupes --trace dup:<fp> (and the trace_clone MCP tool) to deep-dive this group; shown alongside each group in the human listing.

§spread: usize

Maximum directory-tree or same-file line distance between instances.

§suggested_name: Option<String>

Best-effort human-readable name for the clone: the dominant repeated identifier across the duplicated fragment (e.g. a shared parseCsv function). None when the clone has no clear dominant name (generic or tied identifiers); consumers then fall back to a file-based label. Lets editors and agents label a clone by what it is rather than an opaque ordinal.

§actions: Vec<CloneGroupAction>

Suggested next steps: an extract-shared primary and a suppress-line secondary. Always emitted (possibly empty for forward-compat).

§introduced: Option<AuditIntroduced>

Set by the audit pass when this clone group is introduced relative to the merge-base. None when serialized directly from Rust.

§demotion_reason: Option<CloneDemotionReason>

Set only by fallow audit under --gate new-only, on groups whose introduced flag the gate demoted to false: why the demotion happened. None everywhere else, including fallow dupes --format json (issue #2220).

Implementations§

Source§

impl CloneGroupFinding

Source

pub fn with_fingerprint(group: CloneGroup, fingerprint: String) -> Self

Build the wrapper with a precomputed report-scoped fingerprint.

Trait Implementations§

Source§

impl Clone for CloneGroupFinding

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CloneGroupFinding

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Serialize for CloneGroupFinding

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<'a, T> FromIn<'a, T> for T

Source§

fn from_in(t: T, _: &'a Allocator) -> T

Converts to this type from the input type within the given allocator.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self> ⓘ

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self> ⓘ

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<'a, T, U> IntoIn<'a, U> for T
where U: FromIn<'a, T>,

Source§

fn into_in(self, allocator: &'a Allocator) -> U

Converts this type into the (usually inferred) input type within the given allocator.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more