pub struct DfgEdge {
pub from: usize,
pub to: usize,
pub kind: DependencyKind,
}Expand description
An edge in the dataflow graph representing a dependency.
Fields§
§from: usizeIndex of the producer (source) node.
to: usizeIndex of the consumer (destination) node.
kind: DependencyKindKind of dependency.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DfgEdge
impl RefUnwindSafe for DfgEdge
impl Send for DfgEdge
impl Sync for DfgEdge
impl Unpin for DfgEdge
impl UnsafeUnpin for DfgEdge
impl UnwindSafe for DfgEdge
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