[−][src]Trait petgraph::visit::EdgeRef
An edge reference.
Edge references are used by traits IntoEdges
and IntoEdgeReferences
.
Associated Types
Loading content...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,
type NodeId = N
type EdgeId = (N, N)
type Weight = E
fn source(&self) -> N
[src]
fn target(&self) -> N
[src]
fn weight(&self) -> &E
[src]
fn id(&self) -> (N, N)
[src]
Implementors
impl<'a, E, Ty, Ix> EdgeRef for petgraph::csr::EdgeReference<'a, E, Ty, Ix> where
Ty: EdgeType,
Ix: IndexType,
[src]
Ty: EdgeType,
Ix: IndexType,
type NodeId = NodeIndex<Ix>
type EdgeId = EdgeIndex
type Weight = E
fn source(&self) -> Self::NodeId
[src]
fn target(&self) -> Self::NodeId
[src]
fn weight(&self) -> &E
[src]
fn id(&self) -> Self::EdgeId
[src]
impl<'a, Ix, E> EdgeRef for petgraph::graph::EdgeReference<'a, E, Ix> where
Ix: IndexType,
[src]
Ix: IndexType,
type NodeId = NodeIndex<Ix>
type EdgeId = EdgeIndex<Ix>
type Weight = E
fn source(&self) -> Self::NodeId
[src]
fn target(&self) -> Self::NodeId
[src]
fn weight(&self) -> &E
[src]
fn id(&self) -> Self::EdgeId
[src]
impl<'a, Ix, E> EdgeRef for petgraph::stable_graph::EdgeReference<'a, E, Ix> where
Ix: IndexType,
[src]
Ix: IndexType,
type NodeId = NodeIndex<Ix>
type EdgeId = EdgeIndex<Ix>
type Weight = E
fn source(&self) -> Self::NodeId
[src]
fn target(&self) -> Self::NodeId
[src]
fn weight(&self) -> &E
[src]
fn id(&self) -> Self::EdgeId
[src]
impl<R> EdgeRef for ReversedEdgeReference<R> where
R: EdgeRef,
[src]
R: EdgeRef,
An edge reference