pub struct ImpactRadiusNode {
pub node: String,
pub radius: usize,
pub direct_dependents: usize,
pub max_depth: usize,
}Fields§
§node: String§radius: usizeCount of transitive dependents (nodes reachable via reverse edges).
direct_dependents: usizeCount of direct dependents (reverse neighbors).
max_depth: usizeLongest reverse path from this node to a dependent.
Trait Implementations§
Source§impl Clone for ImpactRadiusNode
impl Clone for ImpactRadiusNode
Source§fn clone(&self) -> ImpactRadiusNode
fn clone(&self) -> ImpactRadiusNode
Returns a duplicate of the value. Read more
1.0.0 · 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 ImpactRadiusNode
impl Debug for ImpactRadiusNode
Auto Trait Implementations§
impl Freeze for ImpactRadiusNode
impl RefUnwindSafe for ImpactRadiusNode
impl Send for ImpactRadiusNode
impl Sync for ImpactRadiusNode
impl Unpin for ImpactRadiusNode
impl UnsafeUnpin for ImpactRadiusNode
impl UnwindSafe for ImpactRadiusNode
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