[][src]Trait petgraph::visit::EdgeRef

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

type NodeId

type EdgeId

type Weight

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.

Loading content...

Implementations on Foreign Types

impl<'a, N, E> EdgeRef for (N, N, &'a E) where
    N: Copy
[src]

type NodeId = N

type EdgeId = (N, N)

type Weight = E

Loading content...

Implementors

impl<'a, E, Ty, Ix> EdgeRef for petgraph::csr::EdgeReference<'a, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

type NodeId = NodeIndex<Ix>

type EdgeId = EdgeIndex

type Weight = E

impl<'a, Ix, E> EdgeRef for petgraph::graph::EdgeReference<'a, E, Ix> where
    Ix: IndexType
[src]

type NodeId = NodeIndex<Ix>

type EdgeId = EdgeIndex<Ix>

type Weight = E

impl<'a, Ix, E> EdgeRef for petgraph::stable_graph::EdgeReference<'a, E, Ix> where
    Ix: IndexType
[src]

type NodeId = NodeIndex<Ix>

type EdgeId = EdgeIndex<Ix>

type Weight = E

impl<R> EdgeRef for ReversedEdgeReference<R> where
    R: EdgeRef
[src]

An edge reference

type NodeId = R::NodeId

type EdgeId = R::EdgeId

type Weight = R::Weight

Loading content...