pub type BoxedIter<T> = Box<dyn Iterator<Item = T> + Send>;
struct BoxedIter<T>(/* private fields */);