usecrate::Component;usecrate::Layer;usecrate::Rgb;/// Data to describe how to render something in the terminal.
#[derive(Component, Debug)]pubstructTerminalRenderer{pubdisplay:char,
publayer: Layer,
pubforeground_color:Option<Rgb>,
pubbackground_color:Option<Rgb>,
}