Trait petgraph::IntoWeightedEdge [] [src]

pub trait IntoWeightedEdge<Ix, E> {
    fn into_weighted_edge(self) -> (Ix, Ix, E);
}

Convert an element like (i, j) or (i, j, w) into a triple of source, target, edge weight.

For Graph::from_edges and GraphMap::from_edges.

Required Methods

fn into_weighted_edge(self) -> (Ix, Ix, E)

Implementors