pub trait IntoCopyIterator: IntoIterator {
    fn __into_citer(self) -> Self::IntoIter;
}

Required Methods

Implementors