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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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