Type Alias DynIter

Source
pub type DynIter<'a, T> = Box<dyn Iterator<Item = Result<T>> + 'a>;
Expand description

A dynamic iterator over results, which are commonly employed as transaction return types.

Aliased Typeยง

pub struct DynIter<'a, T>(/* private fields */);