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

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

Mutable pixel iterator

Trait Implementations

impl<'a, I: GenericImage + 'a> Iterator for MutPixels<'a, I> where Pixel: 'a, <Pixel as Pixel>::Subpixel: 'a

type Item = (u32, u32, &'a mut Pixel)

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

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