Trait tabled::CellOption[][src]

pub trait CellOption {
    fn change_cell(&self, grid: &mut Grid, row: usize, column: usize);
}
Expand description

CellOption is trait for configuring a Cell which represented by ‘row’ and ‘column’ indexes.

Required methods

Modification function of a Cell

Implementors