pub type BoxIterator<'a, T> = Box<dyn Iterator<Item = T> + Send + 'a>;
Type alias for a boxed iterator that is Send.
Send
pub struct BoxIterator<'a, T>(/* private fields */);