Struct Rows

struct Rows<'a, P: Pixel + 'a> { ... }
where
    <P as Pixel>::Subpixel: 'a

Iterate over rows of an image

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

Implementations

impl<'a, P> Freeze for Rows<'a, P>

impl<'a, P> RefUnwindSafe for Rows<'a, P>

impl<'a, P> Send for Rows<'a, P>

impl<'a, P> Sync for Rows<'a, P>

impl<'a, P> Unpin for Rows<'a, P>

impl<'a, P> UnsafeUnpin for Rows<'a, P>

impl<'a, P> UnwindSafe for Rows<'a, P>

impl<'a, P: Pixel + 'a> DoubleEndedIterator for Rows<'a, P>

fn next_back(self: &mut Self) -> Option<Pixels<'a, P>>

impl<'a, P: Pixel + 'a> ExactSizeIterator for Rows<'a, P>

fn len(self: &Self) -> usize

impl<'a, P: Pixel + 'a> Iterator for Rows<'a, P>

fn next(self: &mut Self) -> Option<Pixels<'a, P>>
fn size_hint(self: &Self) -> (usize, Option<usize>)

impl<'data, I> IntoParallelRefMutIterator for Rows<'a, P>

fn par_iter_mut(self: &'data mut Self) -> <I as IntoParallelRefMutIterator<'data>>::Iter

impl<I> IntoIterator for Rows<'a, P>

fn into_iter(self: Self) -> I

impl<I> ParallelIterator for Rows<'a, P>

impl<P: Pixel> Clone for Rows<'_, P>

fn clone(self: &Self) -> Self

impl<P: Pixel> Debug for Rows<'_, P>

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

impl<T> Any for Rows<'a, P>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Rows<'a, P>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for Rows<'a, P>

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

impl<T> CloneToUninit for Rows<'a, P>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

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

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Itertools for Rows<'a, P>

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

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> ToOwned for Rows<'a, P>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for Rows<'a, P>

fn into(self: 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 for Rows<'a, P>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for Rows<'a, P>

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