[][src]Trait embedded_graphics_core::iterator::ContiguousIteratorExt

pub trait ContiguousIteratorExt where
    Self: Iterator + Sized,
    Self::Item: PixelColor
{ pub fn into_pixels(self, bounding_box: &Rectangle) -> IntoPixels<Self>

Notable traits for IntoPixels<I>

impl<I> Iterator for IntoPixels<I> where
    I: Iterator,
    I::Item: PixelColor
type Item = Pixel<I::Item>;
; }

Extension trait for contiguous iterators.

Required methods

pub fn into_pixels(self, bounding_box: &Rectangle) -> IntoPixels<Self>

Notable traits for IntoPixels<I>

impl<I> Iterator for IntoPixels<I> where
    I: Iterator,
    I::Item: PixelColor
type Item = Pixel<I::Item>;
[src]

Converts a contiguous iterator into a pixel iterator.

Loading content...

Implementors

impl<I> ContiguousIteratorExt for I where
    I: Iterator,
    I::Item: PixelColor
[src]

Loading content...