pub trait IntoArrayIterator<const N: usize> {
type Item;
type ArrayIter: ArrayIterator<N, Item = Self::Item>;
// Required method
fn into_array_iter(self) -> Self::ArrayIter;
}
Expand description
Similar to IntoIterator
, IntoArrayIterator
allows types to become ArrayIterator
s
Required Associated Types§
Sourcetype ArrayIter: ArrayIterator<N, Item = Self::Item>
type ArrayIter: ArrayIterator<N, Item = Self::Item>
The ArrayIterator
returned
Required Methods§
Sourcefn into_array_iter(self) -> Self::ArrayIter
fn into_array_iter(self) -> Self::ArrayIter
Converts self into an ArrayIterator