pub trait IrIter<C: Config, Item>: Sized {
    // Required method
    fn ir_par_map_collect<B, F, S>(
        self,
        builder: &mut Builder<C>,
        map_op: F,
    ) -> B
       where F: FnMut(&mut Builder<C>, Item) -> S,
             B: Default + Extend<S>;
}Required Methods§
fn ir_par_map_collect<B, F, S>(self, builder: &mut Builder<C>, map_op: F) -> B
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.