Struct daggy::petgraph::graph::NodeWeightsMut []

pub struct NodeWeightsMut<'a, N, Ix = u32> where Ix: IndexType, N: 'a {
    // some fields omitted
}

Iterator yielding mutable access to all node weights.

Trait Implementations

impl<'a, N, Ix> Iterator for NodeWeightsMut<'a, N, Ix> where Ix: IndexType

type Item = &'a mut N

fn next(&mut self) -> Option<&'a mut N>

fn size_hint(&self) -> (usize, Option<usize>)