pub trait IntoCellIter<A>where
Self: Copy,{
// Required method
fn iter_cells(self) -> impl Iterator<Item = [A; 2]>;
}Required Methods§
fn iter_cells(self) -> impl Iterator<Item = [A; 2]>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.