Skip to main content

NameIter

Trait NameIter 

Source
pub trait NameIter: Iterator<Item = Result<Vertex>> + Send { }
Expand description

Iterator of Set. Types implementing this should consider replacing iter_rev with a fast path if possible.

Implementors§

Source§

impl<T> NameIter for T
where T: Iterator<Item = Result<Vertex>> + Send,