pub trait Cells<'a, CellKey, Cell>{
// Required method
fn cells(&'a self) -> impl IteratorTrait<Item = (CellKey, Option<Cell>)>;
}
Expand description
A trait for iterating over all cells of a row.
Required Methods§
Sourcefn cells(&'a self) -> impl IteratorTrait<Item = (CellKey, Option<Cell>)>
fn cells(&'a self) -> impl IteratorTrait<Item = (CellKey, Option<Cell>)>
Returns an iterator over all cells of the row.
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.