Trait petgraph::visit::GraphEdgeRef
[−]
[src]
pub trait GraphEdgeRef: GraphRef { type EdgeRef: EdgeRef<NodeId=Self::NodeId, EdgeId=Self::EdgeId>; }
A graph that defines edge references
Associated Types
Implementors
impl<G> GraphEdgeRef for Reversed<G> where G: GraphEdgeRef
impl<'a, G> GraphEdgeRef for &'a G where G: GraphEdgeRef
impl<'a, N: 'a, E: 'a, Ty, Ix> GraphEdgeRef for &'a Graph<N, E, Ty, Ix> where Ty: EdgeType, Ix: IndexType