pub trait ArrayIteratorArrayExt: Array {
// Provided method
fn to_array_iterator(&self) -> impl ArrayIterator + 'static { ... }
}
Provided Methods§
Sourcefn to_array_iterator(&self) -> impl ArrayIterator + 'static
fn to_array_iterator(&self) -> impl ArrayIterator + 'static
Create an ArrayIterator
over the array.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.