IntoDynBoxed

Trait IntoDynBoxed 

Source
pub trait IntoDynBoxed<'a, T> {
    // Required method
    fn into_dyn_boxed(self) -> BoxedLIter<'a, T>;
}

Required Methods§

Source

fn into_dyn_boxed(self) -> BoxedLIter<'a, T>

Implementors§

Source§

impl<'a, T, I: Iterator<Item = T> + Send + Sync + 'a> IntoDynBoxed<'a, T> for I