pub type DynIter<'a, T> = Box<dyn Iterator<Item = Result<T>> + 'a>;
A dynamic iterator over results, which are commonly employed as transaction return types.
pub struct DynIter<'a, T>(/* private fields */);