Struct daggy::petgraph::graph::EdgeWeightsMut []

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

Iterator yielding mutable access to all edge weights.

Trait Implementations

impl<'a, E, Ix> Iterator for EdgeWeightsMut<'a, E, Ix> where Ix: IndexType

type Item = &'a mut E

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

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