Trait NodeMapMut
rs_graph
pub trait NodeMapMut<'a, G, T>: NodeMap<'a, G, T> + IndexMut<G::Node, Output = T> where G: Graph<'a>, { }
Trait for mutable maps assigning values to nodes of a graph.
impl<'a, G, T, I> NodeMapMut<'a, G, T> for I where G: Graph<'a>, I: IndexMut<G::Node, Output = T>,