NodeIter

Type Alias NodeIter 

Source
pub type NodeIter<I, E> = Result<Box<dyn Iterator<Item = Result<I, E>>>, E>;
Available on crate feature sync only.
Expand description

A boxed Iterator of Nodes.

Aliased Type§

pub enum NodeIter<I, E> {
    Ok(Box<dyn Iterator<Item = Result<I, E>>>),
    Err(E),
}

Variants§

§1.0.0

Ok(Box<dyn Iterator<Item = Result<I, E>>>)

Contains the success value

§1.0.0

Err(E)

Contains the error value