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

Required Methods

Implementations on Foreign Types

impl<'a, G> IntoEdgeReferences for &'a G where
    G: IntoEdgeReferences
[src]

Implementors