Trait petgraph::visit::IntoEdgeReferences
[−]
[src]
pub trait IntoEdgeReferences: GraphEdgeRef { type EdgeReferences: Iterator<Item=Self::EdgeRef>; fn edge_references(self) -> Self::EdgeReferences; }
Access to the sequence of the graph’s edges
Associated Types
type EdgeReferences: Iterator<Item=Self::EdgeRef>
Required Methods
fn edge_references(self) -> Self::EdgeReferences
Implementors
impl<G> IntoEdgeReferences for Reversed<G> where G: IntoEdgeReferences
impl<'a, G> IntoEdgeReferences for &'a G where G: IntoEdgeReferences
impl<'a, N: 'a, E: 'a, Ty, Ix> IntoEdgeReferences for &'a Graph<N, E, Ty, Ix> where Ty: EdgeType, Ix: IndexType