pub struct CallersDeep {
pub hops: Vec<Vec<Node>>,
pub risk_level: &'static str,
}Expand description
Callers of a symbol grouped by hop distance.
Fields§
§hops: Vec<Vec<Node>>Groups indexed 0..depth-1. hops[0] = direct callers (hop 1).
risk_level: &'static strRisk score derived from total affected count and depth reached.
Auto Trait Implementations§
impl Freeze for CallersDeep
impl RefUnwindSafe for CallersDeep
impl Send for CallersDeep
impl Sync for CallersDeep
impl Unpin for CallersDeep
impl UnsafeUnpin for CallersDeep
impl UnwindSafe for CallersDeep
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