pub type NodeStream<N, E> = Pin<Box<dyn Stream<Item = Result<N, E>> + Unpin + Send>>;
async
A pinned Stream of Nodes
Stream
Node
pub struct NodeStream<N, E> { /* private fields */ }