Trait EdgeMap
rs_graph
pub trait EdgeMap<'a, G, T>: Index<G::Edge, Output = T> where G: Graph<'a>, { }
Trait for maps assigning values to edges of a graph.
impl<'a, G, T, I> EdgeMap<'a, G, T> for I where G: Graph<'a>, I: Index<G::Edge, Output = T>,