pub trait windows_mut<T> {
    fn windows_mut<const WINDOW_SIZE: usize>(
        &mut self
    ) -> WindowsMut<&mut [T], WINDOW_SIZE>Notable traits for WindowsMut<&'lt mut [T], WINDOW_SIZE>impl<'next, 'lt, T, const WINDOW_SIZE: usize> LendingIteratorඞItem<'next, &'next WindowsMut<&'lt mut [T], WINDOW_SIZE>> for WindowsMut<&'lt mut [T], WINDOW_SIZE> type T = &'next mut [T; WINDOW_SIZE];; }

Required Methods

Implementations on Foreign Types

Extension trait based convenience method version of windows_mut().

Extension trait based convenience method version of windows_mut().

Implementors