pub trait IntoPixelIter<C>{
type PixelIterator: Iterator<Item = Pixel<C>>;
// Required method
fn pixel_iter(self) -> Self::PixelIterator;
}
Expand description
Conversion into an iterator over the pixels of the image.
Required Associated Types§
Sourcetype PixelIterator: Iterator<Item = Pixel<C>>
type PixelIterator: Iterator<Item = Pixel<C>>
Iterator over pixels in the image
Required Methods§
Sourcefn pixel_iter(self) -> Self::PixelIterator
fn pixel_iter(self) -> Self::PixelIterator
Get an iterator over the pixels of the image