Struct RowsMut

pub struct RowsMut<'a, P: Pixel + 'a>
where
    <P as Pixel>::Subpixel: 'a, { /* private fields */ }

Iterate over mutable rows of an image

This iterator is created with ImageBuffer::rows_mut. See its document for details.

Trait Implementations

impl<'a, P: Pixel + 'a> DoubleEndedIterator for RowsMut<'a, P> where P::Subpixel: 'a,

fn next_back(&mut self) -> Option<PixelsMut<'a, P>>

impl<'a, P: Pixel + 'a> ExactSizeIterator for RowsMut<'a, P> where P::Subpixel: 'a,

fn len(&self) -> usize

impl<'a, P: Pixel + 'a> Iterator for RowsMut<'a, P> where P::Subpixel: 'a,

type Item = PixelsMut<'a, P>;
fn next(&mut self) -> Option<PixelsMut<'a, P>>
fn size_hint(&self) -> (usize, Option<usize>)

impl<P: Pixel> Debug for RowsMut<'_, P> where P::Subpixel: Debug,

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Auto Trait Implementations

impl<'a, P> !UnwindSafe for RowsMut<'a, P>

impl<'a, P> Freeze for RowsMut<'a, P> where ChunksExactMut<'a, <P as Pixel>::Subpixel>: Freeze,

impl<'a, P> RefUnwindSafe for RowsMut<'a, P> where ChunksExactMut<'a, <P as Pixel>::Subpixel>: RefUnwindSafe,

impl<'a, P> Send for RowsMut<'a, P> where ChunksExactMut<'a, <P as Pixel>::Subpixel>: Send,

impl<'a, P> Sync for RowsMut<'a, P> where ChunksExactMut<'a, <P as Pixel>::Subpixel>: Sync,

impl<'a, P> Unpin for RowsMut<'a, P> where ChunksExactMut<'a, <P as Pixel>::Subpixel>: Unpin,

impl<'a, P> UnsafeUnpin for RowsMut<'a, P> where ChunksExactMut<'a, <P as Pixel>::Subpixel>: UnsafeUnpin,

Blanket Implementations

impl<I> IntoIterator for RowsMut<'a, P> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for RowsMut<'a, P> where ST: ?Sized, DT: ?Sized,

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for RowsMut<'a, P> where ST: ?Sized, DT: ?Sized,

impl<T> Any for RowsMut<'a, P> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for RowsMut<'a, P> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for RowsMut<'a, P> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for RowsMut<'a, P>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for RowsMut<'a, P>

impl<T> Itertools for RowsMut<'a, P> where T: Iterator + ?Sized,

impl<T> ParallelBridge for RowsMut<'a, P> where T: Iterator + Send, <T as Iterator>::Item: Send,

fn par_bridge(self) -> IterBridge<T>

impl<T> Pointable for RowsMut<'a, P>

const ALIGN: usize = _;
type Init = T;
unsafe fn init(init: <T as Pointable>::Init) -> usize
unsafe fn deref<'a>(ptr: usize) -> &'a T
unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
unsafe fn drop(ptr: usize)

impl<T> Read<Exclusive, BecauseExclusive> for RowsMut<'a, P> where T: ?Sized,

impl<T, U> Into<U> for RowsMut<'a, P> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for RowsMut<'a, P> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for RowsMut<'a, P> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>