pub trait ColorsType<C, T> where
    C: ColorType<T>,
    T: ColorAttributeTypes
{ fn screen(&self) -> Option<SCREEN>;
fn foreground(&self) -> C;
fn background(&self) -> C; }
Expand description

Background and foreground colors.

Required methods

Returns the screen pointer of the foreground and background colors.

Return the foreground color.

Return the background color.

Implementors