Struct indicatif::Style
[−]
[src]
pub struct Style { /* fields omitted */ }
A stored style that can be applied.
Methods
impl Style
[src]
pub fn new() -> Style
[src]
Returns an empty default style.
pub fn from_dotted_str(s: &str) -> Style
[src]
Creates a style from a dotted string.
Effectively the string is split at each dot and then the
terms in between are applied. For instance red.on_blue
will
create a string that is red on blue background. Unknown terms
are ignored.
pub fn apply_to<D>(&self, val: D) -> StyledObject<D>
[src]
Apply the style to something that can be displayed.
pub fn force_styling(self, value: bool) -> Style
[src]
Forces styling on or off.
This overrides the detection from clicolors-control
.
pub fn fg(self, color: Color) -> Style
[src]
Sets a foreground color.
pub fn bg(self, color: Color) -> Style
[src]
Sets a background color.
pub fn attr(self, attr: Attribute) -> Style
[src]
Adds a attr.
pub fn black(self) -> Style
[src]
pub fn red(self) -> Style
[src]
pub fn green(self) -> Style
[src]
pub fn yellow(self) -> Style
[src]
pub fn blue(self) -> Style
[src]
pub fn magenta(self) -> Style
[src]
pub fn cyan(self) -> Style
[src]
pub fn white(self) -> Style
[src]
pub fn on_black(self) -> Style
[src]
pub fn on_red(self) -> Style
[src]
pub fn on_green(self) -> Style
[src]
pub fn on_yellow(self) -> Style
[src]
pub fn on_blue(self) -> Style
[src]
pub fn on_magenta(self) -> Style
[src]
pub fn on_cyan(self) -> Style
[src]
pub fn on_white(self) -> Style
[src]
pub fn bold(self) -> Style
[src]
pub fn dim(self) -> Style
[src]
pub fn underlined(self) -> Style
[src]
pub fn blink(self) -> Style
[src]
pub fn reverse(self) -> Style
[src]
[src]
Trait Implementations
impl Clone for Style
[src]
fn clone(&self) -> Style
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Style
[src]
impl PartialEq for Style
[src]
fn eq(&self, __arg_0: &Style) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Style) -> bool
[src]
This method tests for !=
.