Trait petgraph::visit::EdgeRef
[−]
[src]
pub trait EdgeRef: Copy { type NodeId; type EdgeId; type Weight; fn source(&self) -> Self::NodeId; fn target(&self) -> Self::NodeId; fn weight(&self) -> &Self::Weight; fn id(&self) -> Self::EdgeId; }
An edge reference.
Edge references are used by traits IntoEdges
and IntoEdgeReferences
.
Associated Types
Required Methods
fn source(&self) -> Self::NodeId
The source node of the edge.
fn target(&self) -> Self::NodeId
The target node of the edge.
fn weight(&self) -> &Self::Weight
A reference to the weight of the edge.
fn id(&self) -> Self::EdgeId
The edge’s identifier.
Implementations on Foreign Types
impl<'a, N, E> EdgeRef for (N, N, &'a E) where
N: Copy,
[src]
N: Copy,
Implementors
impl<R> EdgeRef for ReversedEdgeReference<R> where
R: EdgeRef, type NodeId = R::NodeId; type EdgeId = R::EdgeId; type Weight = R::Weight;impl<'a, Ix, E> EdgeRef for petgraph::stable_graph::EdgeReference<'a, E, Ix> where
Ix: IndexType, type NodeId = NodeIndex<Ix>; type EdgeId = EdgeIndex<Ix>; type Weight = E;impl<'a, Ix, E> EdgeRef for petgraph::graph::EdgeReference<'a, E, Ix> where
Ix: IndexType, type NodeId = NodeIndex<Ix>; type EdgeId = EdgeIndex<Ix>; type Weight = E;impl<'a, E, Ty, Ix> EdgeRef for petgraph::csr::EdgeReference<'a, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType, type NodeId = NodeIndex<Ix>; type EdgeId = EdgeIndex; type Weight = E;