[−][src]Trait petgraph::visit::IntoEdges
Access to the edges of each node.
The edges are, depending on the graph’s edge type:
Directed: All edges froma.Undirected: All edges connected toa.
This is an extended version of the trait IntoNeighbors; the former
only iterates over the target node identifiers, while this trait
yields edge references (trait EdgeRef).
Associated Types
Loading content...Required methods
Loading content...Implementations on Foreign Types
impl<'a, G> IntoEdges for &'a G where
G: IntoEdges, [src]
Loading content...G: IntoEdges,
Implementors
impl<'a, 'b, G> IntoEdges for &'b Frozen<'a, G> where
G: IntoEdges, [src]
G: IntoEdges,
impl<'a, G, F> IntoEdges for &'a EdgeFiltered<G, F> where
G: IntoEdges,
F: FilterEdge<G::EdgeRef>, [src]
G: IntoEdges,
F: FilterEdge<G::EdgeRef>,
impl<'a, G, F> IntoEdges for &'a NodeFiltered<G, F> where
G: IntoEdges,
F: FilterNode<G::NodeId>, [src]
G: IntoEdges,
F: FilterNode<G::NodeId>,
impl<'a, N, E, Ty, Ix> IntoEdges for &'a Csr<N, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, [src]
Ty: EdgeType,
Ix: IndexType,
impl<'a, N, E, Ty, Ix> IntoEdges for &'a Graph<N, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, [src]
Ty: EdgeType,
Ix: IndexType,
impl<'a, N, E, Ty, Ix> IntoEdges for &'a StableGraph<N, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, [src]
Ty: EdgeType,
Ix: IndexType,
impl<'a, N: 'a, E: 'a, Ty> IntoEdges for &'a GraphMap<N, E, Ty> where
N: NodeTrait,
Ty: EdgeType, [src]
N: NodeTrait,
Ty: EdgeType,