pub struct GraphEdge {
pub from: Option<String>,
pub to: Option<String>,
pub edge_type: EdgeType,
}Expand description
One directed edge in the dependency graph.
Fields§
§from: Option<String>Source record key (None for external origins like source/link)
to: Option<String>Target record key (None for side-effects like taps/link_out)
edge_type: EdgeTypeClassification of this edge
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 UnsafeUnpin 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