Trait crankit_image::ToRows

source ·
pub trait ToRows: Sized {
    // Required method
    fn to_rows(&self, n: usize) -> impl Iterator<Item = Self>;
}
Expand description

Split the images into n rows of the same size

Required Methods§

source

fn to_rows(&self, n: usize) -> impl Iterator<Item = Self>

Object Safety§

This trait is not object safe.

Implementors§