Trait prototty::ViewCell [] [src]

pub trait ViewCell {
    fn set_character(&mut self, character: char);
fn set_bold(&mut self, bold: bool);
fn set_underline(&mut self, underline: bool);
fn set_foreground_colour(&mut self, colour: Rgb24);
fn set_background_colour(&mut self, colour: Rgb24); }

A cell that a view can write to

Required Methods

Implementors