Trait petgraph::visit::IntoEdgeReferences
[−]
[src]
pub trait IntoEdgeReferences: Data + GraphRef { type EdgeRef: EdgeRef<NodeId = Self::NodeId, EdgeId = Self::EdgeId, Weight = Self::EdgeWeight>; type EdgeReferences: Iterator<Item = Self::EdgeRef>; fn edge_references(self) -> Self::EdgeReferences; }
Access to the sequence of the graph’s edges
Associated Types
type EdgeRef: EdgeRef<NodeId = Self::NodeId, EdgeId = Self::EdgeId, Weight = Self::EdgeWeight>
type EdgeReferences: Iterator<Item = Self::EdgeRef>
Required Methods
fn edge_references(self) -> Self::EdgeReferences
Implementations on Foreign Types
impl<'a, G> IntoEdgeReferences for &'a G where
G: IntoEdgeReferences,
[src]
G: IntoEdgeReferences,
type EdgeRef = G::EdgeRef
type EdgeReferences = G::EdgeReferences
fn edge_references(self) -> Self::EdgeReferences
[src]
Implementors
impl<'a, G, F> IntoEdgeReferences for &'a NodeFiltered<G, F> where
G: IntoEdgeReferences,
F: FilterNode<G::NodeId>, type EdgeRef = G::EdgeRef; type EdgeReferences = NodeFilteredEdgeReferences<'a, G, G::EdgeReferences, F>;impl<'a, G, F> IntoEdgeReferences for &'a EdgeFiltered<G, F> where
G: IntoEdgeReferences,
F: FilterEdge<G::EdgeRef>, type EdgeRef = G::EdgeRef; type EdgeReferences = EdgeFilteredEdges<'a, G, G::EdgeReferences, F>;impl<G> IntoEdgeReferences for Reversed<G> where
G: IntoEdgeReferences, type EdgeRef = ReversedEdgeReference<G::EdgeRef>; type EdgeReferences = ReversedEdgeReferences<G::EdgeReferences>;impl<'a, N: 'a, E: 'a, Ty, Ix> IntoEdgeReferences for &'a Graph<N, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, type EdgeRef = EdgeReference<'a, E, Ix>; type EdgeReferences = EdgeReferences<'a, E, Ix>;impl<'a, N: 'a, E: 'a, Ty> IntoEdgeReferences for &'a GraphMap<N, E, Ty> where
N: NodeTrait,
Ty: EdgeType, type EdgeRef = (N, N, &'a E); type EdgeReferences = AllEdges<'a, N, E, Ty>;impl<'a, N: 'a, E: 'a, Ty, Ix> IntoEdgeReferences for &'a StableGraph<N, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, type EdgeRef = EdgeReference<'a, E, Ix>; type EdgeReferences = EdgeReferences<'a, E, Ix>;impl<'a, 'b, G> IntoEdgeReferences for &'b Frozen<'a, G> where
G: IntoEdgeReferences, type EdgeRef = G::EdgeRef; type EdgeReferences = G::EdgeReferences;impl<'a, N, E, Ty, Ix> IntoEdgeReferences for &'a Csr<N, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, type EdgeRef = EdgeReference<'a, E, Ty, Ix>; type EdgeReferences = EdgeReferences<'a, E, Ty, Ix>;