Struct term_painter::Style [] [src]

pub struct Style {
    pub fg: Color,
    pub bg: Color,
    // some fields omitted
}

Saves all properties of a style. Implements ToStyle, so you can call style modifiers on it.

Fields

fg
bg

Methods

impl Style

fn get_bold(&self) -> Option<bool>

fn set_bold(&mut self, v: Option<bool>)

fn get_dim(&self) -> Option<bool>

fn set_dim(&mut self, v: Option<bool>)

fn get_underline(&self) -> Option<bool>

fn set_underline(&mut self, v: Option<bool>)

fn get_reverse(&self) -> Option<bool>

fn set_reverse(&mut self, v: Option<bool>)

fn get_secure(&self) -> Option<bool>

fn set_secure(&mut self, v: Option<bool>)

Trait Implementations

impl Default for Style

fn default() -> Self

impl ToStyle for Style

fn to_style(self) -> Style

fn fg(self, c: Color) -> Style

fn bg(self, c: Color) -> Style

fn bold(self) -> Style

fn dim(self) -> Style

fn underline(self) -> Style

fn not_underline(self) -> Style

fn reverse(self) -> Style

fn secure(self) -> Style

fn paint<T>(&self, obj: T) -> Painted<T> where Self: Clone

fn with<F, R>(&self, f: F) -> R where F: FnOnce() -> R, Self: Clone

Derived Implementations

impl Eq for Style

impl PartialEq for Style

fn eq(&self, __arg_0: &Style) -> bool

fn ne(&self, __arg_0: &Style) -> bool

impl Clone for Style

fn clone(&self) -> Style

fn clone_from(&mut self, source: &Self)

impl Copy for Style

impl Debug for Style

fn fmt(&self, __arg_0: &mut Formatter) -> Result