pub trait RecordsMut<T> {
    fn set<W>(&mut self, pos: Position, text: T, width_ctrl: W)
    where
        W: WidthFunc
; fn update<W>(&mut self, pos: Position, width_ctrl: W)
    where
        W: WidthFunc
; }
Expand description

A Grid representation of a data set which can be modified.

Required Methods

Sets a text to a given cell by index.

Updates a given cell by index.

Maybe used if width function was changed.

Implementors