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".