Trait HasRowChunksExact

Source
pub trait HasRowChunksExact<F>: ImageStride<F> {
    // Required method
    fn rowchunks_exact(&self) -> RowChunksExact<'_> ;
}
Expand description

An image whose rows can be iterated over.

Required Methods§

Implementors§

Source§

impl<S, F> HasRowChunksExact<F> for S
where S: ImageStride<F>, F: PixelFormat,