pub struct BlastRadius {
pub changed_functions: Vec<String>,
pub affected: Vec<CallGraphNode>,
pub affected_count: usize,
}Expand description
Blast radius result for a set of changed functions.
Fields§
§changed_functions: Vec<String>The changed functions that triggered the analysis.
affected: Vec<CallGraphNode>Downstream functions affected (transitive callers).
affected_count: usizeTotal number of affected functions.
Trait Implementations§
Source§impl Clone for BlastRadius
impl Clone for BlastRadius
Source§fn clone(&self) -> BlastRadius
fn clone(&self) -> BlastRadius
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 BlastRadius
impl RefUnwindSafe for BlastRadius
impl Send for BlastRadius
impl Sync for BlastRadius
impl Unpin for BlastRadius
impl UnsafeUnpin for BlastRadius
impl UnwindSafe for BlastRadius
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