Trait MixedIterable

Source
pub trait MixedIterable<G>
where G: Graph,
{ // Required method fn vertices_and_edges(&self) -> MixedIterator<'_, G> ; }

Required Methods§

Source

fn vertices_and_edges(&self) -> MixedIterator<'_, G>

Returns an EdgeIterator over the edges of this graph.

Implementors§

Source§

impl<G> MixedIterable<G> for G
where G: Graph,