pub struct NodeDepth {
pub node: String,
pub depth: usize,
pub in_cycle: bool,
}Fields§
§node: String§depth: usize§in_cycle: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for NodeDepth
impl RefUnwindSafe for NodeDepth
impl Send for NodeDepth
impl Sync for NodeDepth
impl Unpin for NodeDepth
impl UnsafeUnpin for NodeDepth
impl UnwindSafe for NodeDepth
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