pub trait TakeIterator: Iterator<Item = usize> + TrustedLen {
    fn check_bounds(&self, bound: usize) -> Result<(), PolarsError>;
fn boxed_clone(&self) -> Box<dyn TakeIterator<Item = usize>, Global>; }
This is supported on crate feature object only.

Required methods

Trait Implementations

Implementors