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

Split the images into n columns of the same size

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§