[][src]Trait embedded_graphics::image::IntoPixelIter

pub trait IntoPixelIter<C> where
    C: PixelColor + From<<C as PixelColor>::Raw>, 
{ type PixelIterator: Iterator<Item = Pixel<C>>; fn pixel_iter(self) -> Self::PixelIterator; }

Conversion into an iterator over the pixels of the image.

Associated Types

type PixelIterator: Iterator<Item = Pixel<C>>

Iterator over pixels in the image

Loading content...

Required methods

fn pixel_iter(self) -> Self::PixelIterator

Get an iterator over the pixels of the image

Loading content...

Implementors

impl<'a, 'b, C, BO> IntoPixelIter<C> for &'a ImageRaw<'b, C, BO> where
    C: PixelColor + From<<C as PixelColor>::Raw>,
    BO: ByteOrder,
    RawDataIter<'b, C::Raw, BO>: Iterator<Item = C::Raw>, 
[src]

type PixelIterator = ImageRawIterator<'a, 'b, C, BO>

Loading content...