Struct console::Style [−][src]
A stored style that can be applied.
Implementations
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 for_stderr(self) -> Style
[src]
Specifies that style is applying to something being written on stderr.
pub fn for_stdout(self) -> Style
[src]
Specifies that style is applying to something being written on stdout.
This is the default behaviour.
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 color256(self, color: u8) -> Style
[src]
pub fn bright(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 on_color256(self, color: u8) -> Style
[src]
pub fn on_bright(self) -> Style
[src]
pub fn bold(self) -> Style
[src]
pub fn dim(self) -> Style
[src]
pub fn italic(self) -> Style
[src]
pub fn underlined(self) -> Style
[src]
pub fn blink(self) -> Style
[src]
pub fn reverse(self) -> Style
[src]
pub fn hidden(self) -> Style
[src]
Trait Implementations
impl Clone for Style
[src]
impl Debug for Style
[src]
impl Default for Style
[src]
impl Eq for Style
[src]
impl PartialEq<Style> for Style
[src]
impl StructuralEq for Style
[src]
impl StructuralPartialEq for Style
[src]
Auto Trait Implementations
impl RefUnwindSafe for Style
impl Send for Style
impl Sync for Style
impl Unpin for Style
impl UnwindSafe for Style
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,