pub trait ArrayWindowsExt {
type Iter<const N: usize>: Iterator;
// Required method
fn array_windows<const N: usize>(self) -> Self::Iter<N>;
}Required Associated Types§
Required Methods§
fn array_windows<const N: usize>(self) -> Self::Iter<N>
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.