Trait RecordsMut

Source
pub trait RecordsMut<Text> {
    // Required method
    fn set(&mut self, pos: Position, text: Text);
}
Expand description

A Records representation which can modify cell by (row, column) index.

Required Methods§

Source

fn set(&mut self, pos: Position, text: Text)

Sets a text to a given cell by index.

Implementations on Foreign Types§

Source§

impl<T, Text> RecordsMut<Text> for &mut T
where T: RecordsMut<Text>,

Source§

fn set(&mut self, pos: Position, text: Text)

Implementors§