pub enum GraphEdge {
ExecutionFlow,
DataFlow,
DataMap(usize),
}
Variants§
ExecutionFlow
Execution flow between nodes.
DataFlow
Data flow between stores.
DataMap(usize)
Data map from node -> store, or store -> node. The usize is the index of the data in the node.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphEdge
impl RefUnwindSafe for GraphEdge
impl Send for GraphEdge
impl Sync for GraphEdge
impl Unpin for GraphEdge
impl UnwindSafe for GraphEdge
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