pub struct DepEdge {
pub from: usize,
pub to: usize,
pub via: Vec<String>,
}Expand description
A directed edge from → to, with the connecting items shown on the arrow.
Fields§
§from: usize§to: usize§via: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DepEdge
impl RefUnwindSafe for DepEdge
impl Send for DepEdge
impl Sync for DepEdge
impl Unpin for DepEdge
impl UnsafeUnpin for DepEdge
impl UnwindSafe for DepEdge
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