pub struct EngineReport {
pub groups: Vec<CloneGroup>,
pub stats: EngineStats,
}Expand description
The engine’s output: clone groups plus run statistics.
Fields§
§groups: Vec<CloneGroup>Detected clone groups, deterministically ordered.
stats: EngineStatsWhat the run saw and dropped.
Trait Implementations§
Source§impl Clone for EngineReport
impl Clone for EngineReport
Source§fn clone(&self) -> EngineReport
fn clone(&self) -> EngineReport
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 moreAuto Trait Implementations§
impl Freeze for EngineReport
impl RefUnwindSafe for EngineReport
impl Send for EngineReport
impl Sync for EngineReport
impl Unpin for EngineReport
impl UnsafeUnpin for EngineReport
impl UnwindSafe for EngineReport
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