Trait imgref::ImgExtMut[][src]

pub trait ImgExtMut<Pixel> {
    fn rows_padded_mut(&mut self) -> ChunksMut<Pixel>;
}

Additional methods that depend on buffer size

To use these methods you need:

use imgref::*;

Required Methods

Iterate over the entire buffer as rows, including all padding

Rows will have up to stride width, but the last row may be shorter.

Implementors