ArrayWindowsExt

Trait ArrayWindowsExt 

Source
pub trait ArrayWindowsExt {
    type Iter<const N: usize>: Iterator;

    // Required method
    fn array_windows<const N: usize>(self) -> Self::Iter<N>;
}

Required Associated Types§

Source

type Iter<const N: usize>: Iterator

Required Methods§

Source

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.

Implementors§

Source§

impl<I> ArrayWindowsExt for I
where I: Iterator, <I as Iterator>::Item: Clone,

Source§

type Iter<const N: usize> = ArrayWindows<I, N>