pub struct WindowIterator<I, const N: usize> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<I, const N: usize> Source for WindowIterator<I, N>
impl<I, const N: usize> Source for WindowIterator<I, N>
type Item = <I as Iterator>::Item
type Morsel = ChunkMorsel<<WindowIterator<I, N> as Source>::Item, N>
type NextFuture<'next> = impl Future<Output = Option<<WindowIterator<I, N> as Source>::Morsel>> + 'next where Self: 'next
fn next(&mut self) -> Self::NextFuture<'_>
Auto Trait Implementations§
impl<I, const N: usize> Freeze for WindowIterator<I, N>where
I: Freeze,
impl<I, const N: usize> RefUnwindSafe for WindowIterator<I, N>where
I: RefUnwindSafe,
impl<I, const N: usize> Send for WindowIterator<I, N>where
I: Send,
impl<I, const N: usize> Sync for WindowIterator<I, N>where
I: Sync,
impl<I, const N: usize> Unpin for WindowIterator<I, N>where
I: Unpin,
impl<I, const N: usize> UnwindSafe for WindowIterator<I, N>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more