Struct image::Pixels [-] [+] [src]

pub struct Pixels<'a, I: 'a> {
    // some fields omitted
}

Immutable pixel iterator

Trait Implementations

impl<'a, I: GenericImage> Iterator for Pixels<'a, I>

type Item = (u32, u32, Pixel)

fn next(&mut self) -> Option<(u32, u32, Pixel)>

fn size_hint(&self) -> (usize, Option<usize>)