Trait HasRowChunksExactMut

Source
pub trait HasRowChunksExactMut<F>: ImageMutStride<F> {
    // Required method
    fn rowchunks_exact_mut(&mut self) -> RowChunksExactMut<'_> ;
}
Expand description

An image whose mutable rows can be iterated over.

Required Methods§

Implementors§

Source§

impl<S, F> HasRowChunksExactMut<F> for S
where S: ImageMutStride<F>, F: PixelFormat,