pub struct RegionStats {
pub seeds: usize,
pub divergent_extent: usize,
pub folded: usize,
pub absorbed: usize,
pub self_overlapping: usize,
pub below_minimum: usize,
pub regions: usize,
pub shared: usize,
}Expand description
What consolidation saw and dropped.
Fields§
§seeds: usizeStatement-window seed matches offered to the fold.
divergent_extent: usizeSeeds dropped because their two sides cover very different amounts of source, so the summaries matched over unequal code.
folded: usizeRegions the seeds folded into, before the drops below.
absorbed: usizeRegions absorbed by a region containing them on both sides.
self_overlapping: usizeRegions whose two sides overlap each other in one block, so the “clone” is a run overlapping itself rather than two instances.
below_minimum: usizeRegions shorter than MaximalConfig::min_statements.
regions: usizePairwise regions emitted.
Occurrence sets the pairwise regions collapse into: the number of distinct duplicated runs.
Trait Implementations§
Source§impl Clone for RegionStats
impl Clone for RegionStats
Source§fn clone(&self) -> RegionStats
fn clone(&self) -> RegionStats
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 RegionStats
impl Debug for RegionStats
Source§impl Default for RegionStats
impl Default for RegionStats
Source§fn default() -> RegionStats
fn default() -> RegionStats
Returns the “default value” for a type. Read more
impl Eq for RegionStats
Source§impl PartialEq for RegionStats
impl PartialEq for RegionStats
impl StructuralPartialEq for RegionStats
Auto Trait Implementations§
impl Freeze for RegionStats
impl RefUnwindSafe for RegionStats
impl Send for RegionStats
impl Sync for RegionStats
impl Unpin for RegionStats
impl UnsafeUnpin for RegionStats
impl UnwindSafe for RegionStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.