Skip to main content

IntoCellIter

Trait IntoCellIter 

Source
pub trait IntoCellIter<A>
where Self: Copy,
{ // Required method fn iter_cells(self) -> impl Iterator<Item = [A; 2]>; }

Required Methods§

Source

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.

Implementors§

Source§

impl<A: Copy> IntoCellIter<A> for Range<A>
where RangeInclusive<A>: Iterator<Item = A>,

Source§

impl<I: IntoIterator<Item = [A; 2]> + Copy, A> IntoCellIter<A> for I