pub trait Style {
fn style(self, style: Styles) -> String;
fn reset(self) -> String;
fn bold(self) -> String;
fn dim(self) -> String;
fn italic(self) -> String;
fn underline(self) -> String;
fn inverse(self) -> String;
fn hidden(self) -> String;
fn strikethrough(self) -> String;
fn black(self) -> String;
fn red(self) -> String;
fn green(self) -> String;
fn yellow(self) -> String;
fn blue(self) -> String;
fn magenta(self) -> String;
fn cyan(self) -> String;
fn white(self) -> String;
fn gray(self) -> String;
fn grey(self) -> String;
fn bg_black(self) -> String;
fn bg_red(self) -> String;
fn bg_green(self) -> String;
fn bg_yellow(self) -> String;
fn bg_blue(self) -> String;
fn bg_magenta(self) -> String;
fn bg_cyan(self) -> String;
fn bg_white(self) -> String;
}
Required Methods
Implementors
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct, enum,
trait, typedef (or
tdef).