pub trait WindowedExt<'a, T: 'a> {
type IterBy: Iterator<Item = &'a [T]> + DoubleEndedIterator + ExactSizeIterator;
// Required method
fn sliding_windows_by(&'a self, size: usize, step: usize) -> Self::IterBy;
}Required Associated Types§
type IterBy: Iterator<Item = &'a [T]> + DoubleEndedIterator + ExactSizeIterator
Required Methods§
fn sliding_windows_by(&'a self, size: usize, step: usize) -> Self::IterBy
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".