Struct RowsIterMut
pub struct RowsIterMut<'a, T: Pixel> { /* private fields */ }
Trait Implementations
impl<'a, T: Pixel> Iterator for RowsIterMut<'a, T>
type Item = &'a mut [T];fn next(&mut self) -> Option<Self::Item>fn size_hint(&self) -> (usize, Option<usize>)
impl<T: Pixel> ExactSizeIterator for RowsIterMut<'_, T>
impl<T: Pixel> FusedIterator for RowsIterMut<'_, T>
Auto Trait Implementations
impl<'a, T> !Send for RowsIterMut<'a, T>
impl<'a, T> !Sync for RowsIterMut<'a, T>
impl<'a, T> !UnwindSafe for RowsIterMut<'a, T>
impl<'a, T> Freeze for RowsIterMut<'a, T>
where
*mut Plane<T>: Freeze,
PhantomData<&'a mut Plane<T>>: Freeze,
impl<'a, T> RefUnwindSafe for RowsIterMut<'a, T>
where
*mut Plane<T>: RefUnwindSafe,
PhantomData<&'a mut Plane<T>>: RefUnwindSafe,
impl<'a, T> Unpin for RowsIterMut<'a, T>
where
*mut Plane<T>: Unpin,
PhantomData<&'a mut Plane<T>>: Unpin,
impl<'a, T> UnsafeUnpin for RowsIterMut<'a, T>
where
*mut Plane<T>: UnsafeUnpin,
PhantomData<&'a mut Plane<T>>: UnsafeUnpin,
Blanket Implementations
impl<I> IntoIterator for RowsIterMut<'a, T>
where
I: Iterator,
type Item = <I as Iterator>::Item;type IntoIter = I;fn into_iter(self) -> I
impl<T> Any for RowsIterMut<'a, T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for RowsIterMut<'a, T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for RowsIterMut<'a, T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for RowsIterMut<'a, T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for RowsIterMut<'a, T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for RowsIterMut<'a, T>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for RowsIterMut<'a, T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>