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

Required methods

Trait Implementations

Implementors