pub trait TakeIterator: Iterator<Item = usize> + TrustedLen {
    fn check_bounds(&self, bound: usize) -> Result<()>;
fn boxed_clone(&self) -> Box<dyn TakeIterator>; }

Required methods

Trait Implementations

Implementors