Enum term_painter::Attr [] [src]

pub enum Attr {
    Plain,
    Bold,
    Dim,
    Underline,
    Blink,
    Reverse,
    Secure,
}

Lists possible attributes. It implements ToStyle so it's possible to call ToStyle's methods directly on a Attr variant like:

println!("{}", Attr::Bold.fg(Color::Red).paint("Red and bold"));

For more information about enum variants, see term::Attr Documentation.

Variants

Plain

Just default style

Bold
Dim
Underline
Reverse
Secure

Trait Implementations

impl ToStyle for Attr

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 Attr

impl PartialEq for Attr

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

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

impl Clone for Attr

fn clone(&self) -> Attr

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

impl Copy for Attr

impl Debug for Attr

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