Skip to main content

BoxIterator

Type Alias BoxIterator 

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

Type alias for a boxed iterator that is Send.

Aliased Typeยง

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