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

Required Methods

Trait Implementations

Implementors