pub trait CellOption<R> {
// Required method
fn change_cell(&mut self, table: &mut Table<R>, entity: Entity);
}
Expand description
A trait for configuring a single cell. Where cell represented by ‘row’ and ‘column’ indexes.
A cell can be targeted by Cell
.
Required Methods§
Sourcefn change_cell(&mut self, table: &mut Table<R>, entity: Entity)
fn change_cell(&mut self, table: &mut Table<R>, entity: Entity)
Modification function of a single cell.