pub struct ImpactStats {
pub directly_changed: usize,
pub direct_callers: usize,
pub transitive_callers: usize,
pub affected_tests: usize,
pub total_blast_radius: usize,
pub files_affected: usize,
}Expand description
Summary statistics for an impact report.
Fields§
§directly_changed: usize§direct_callers: usize§transitive_callers: usize§affected_tests: usize§total_blast_radius: usize§files_affected: usizeTrait Implementations§
Source§impl Clone for ImpactStats
impl Clone for ImpactStats
Source§fn clone(&self) -> ImpactStats
fn clone(&self) -> ImpactStats
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 ImpactStats
impl Debug for ImpactStats
Source§impl Default for ImpactStats
impl Default for ImpactStats
Source§fn default() -> ImpactStats
fn default() -> ImpactStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ImpactStats
impl RefUnwindSafe for ImpactStats
impl Send for ImpactStats
impl Sync for ImpactStats
impl Unpin for ImpactStats
impl UnsafeUnpin for ImpactStats
impl UnwindSafe for ImpactStats
Blanket Implementations§
impl<T> Allocation for T
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