pub trait Style {
    fn paint(&self, text: &str) -> String;
    fn bold(&self) -> Box<dyn Style>;
}
Expand description

This trait implements a return value for the Stylesheet::get_style.

Required Methods§

The method used by the DisplayListFormatter to style the message.

The method used by the DisplayListFormatter to display the message in bold font.

Implementors§