Struct dsp::daggy::walker::IterEdges []

pub struct IterEdges<'a, G, Ix, W> where G: 'a {
    // some fields omitted
}

An iterator yielding edge indices produced by its internal walker and graph.

Trait Implementations

impl<'a, G, Ix, W> Debug for IterEdges<'a, G, Ix, W> where G: 'a + Debug, Ix: Debug, W: Debug

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl<'a, G, Ix, W> Clone for IterEdges<'a, G, Ix, W> where G: 'a + Clone, Ix: Clone, W: Clone

fn clone(&self) -> IterEdges<'a, G, Ix, W>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<'a, G, Ix, W> Iterator for IterEdges<'a, G, Ix, W> where Ix: IndexType, W: Walker<G, Index=Ix>

type Item = EdgeIndex<Ix>

fn next(&mut self) -> Option<EdgeIndex<Ix>>