pub type NodeIter<I, E> = Result<Box<dyn Iterator<Item = Result<I, E>>>, E>;
sync
A boxed Iterator of Nodes.
Iterator
Node
pub enum NodeIter<I, E> { Ok(Box<dyn Iterator<Item = Result<I, E>>>), Err(E), }
Contains the success value
Contains the error value