pub struct ComboColorDisplay<'a, Fg: Color, Bg: Color, T>(/* private fields */);
Expand description
A wrapper type which applies both a foreground and background color
Implementations§
source§impl<'a, Fg, Bg, T> ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> ComboColorDisplay<'a, Fg, Bg, T>
sourcepub fn on_color<NewBg: DynColor>(
self,
bg: NewBg,
) -> ComboDynColorDisplay<'a, Fg::DynEquivelant, NewBg, T>
pub fn on_color<NewBg: DynColor>( self, bg: NewBg, ) -> ComboDynColorDisplay<'a, Fg::DynEquivelant, NewBg, T>
Set the background color at runtime. Only use if you do not know what color to use at
compile-time. If the color is constant, use either OwoColorize::bg
or
a color-specific method, such as OwoColorize::on_yellow
,
use owo_colors::{OwoColorize, AnsiColors};
println!("{}", "yellow background".on_color(AnsiColors::BrightYellow));
sourcepub fn color<NewFg: DynColor>(
self,
fg: NewFg,
) -> ComboDynColorDisplay<'a, NewFg, Bg::DynEquivelant, T>
pub fn color<NewFg: DynColor>( self, fg: NewFg, ) -> ComboDynColorDisplay<'a, NewFg, Bg::DynEquivelant, T>
Set the foreground color at runtime. Only use if you do not know which color will be used at
compile-time. If the color is constant, use either OwoColorize::fg
or
a color-specific method, such as OwoColorize::green
,
use owo_colors::{OwoColorize, AnsiColors};
println!("{}", "green".color(AnsiColors::Green));
sourcepub fn fg<C: Color>(self) -> ComboColorDisplay<'a, C, Bg, T>
pub fn fg<C: Color>(self) -> ComboColorDisplay<'a, C, Bg, T>
Set the foreground color generically
use owo_colors::{OwoColorize, colors::*};
println!("{}", "red foreground".fg::<Red>());
sourcepub fn bg<C: Color>(self) -> ComboColorDisplay<'a, Fg, C, T>
pub fn bg<C: Color>(self) -> ComboColorDisplay<'a, Fg, C, T>
Set the background color generically.
use owo_colors::{OwoColorize, colors::*};
println!("{}", "black background".bg::<Black>());
sourcepub fn on_black(self) -> ComboColorDisplay<'a, Fg, Black, T>
pub fn on_black(self) -> ComboColorDisplay<'a, Fg, Black, T>
Change the background color to black
sourcepub fn black(self) -> ComboColorDisplay<'a, Black, Bg, T>
pub fn black(self) -> ComboColorDisplay<'a, Black, Bg, T>
Change the foreground color to black
sourcepub fn on_red(self) -> ComboColorDisplay<'a, Fg, Red, T>
pub fn on_red(self) -> ComboColorDisplay<'a, Fg, Red, T>
Change the background color to red
sourcepub fn red(self) -> ComboColorDisplay<'a, Red, Bg, T>
pub fn red(self) -> ComboColorDisplay<'a, Red, Bg, T>
Change the foreground color to red
sourcepub fn on_green(self) -> ComboColorDisplay<'a, Fg, Green, T>
pub fn on_green(self) -> ComboColorDisplay<'a, Fg, Green, T>
Change the background color to green
sourcepub fn green(self) -> ComboColorDisplay<'a, Green, Bg, T>
pub fn green(self) -> ComboColorDisplay<'a, Green, Bg, T>
Change the foreground color to green
sourcepub fn on_yellow(self) -> ComboColorDisplay<'a, Fg, Yellow, T>
pub fn on_yellow(self) -> ComboColorDisplay<'a, Fg, Yellow, T>
Change the background color to yellow
sourcepub fn yellow(self) -> ComboColorDisplay<'a, Yellow, Bg, T>
pub fn yellow(self) -> ComboColorDisplay<'a, Yellow, Bg, T>
Change the foreground color to yellow
sourcepub fn on_blue(self) -> ComboColorDisplay<'a, Fg, Blue, T>
pub fn on_blue(self) -> ComboColorDisplay<'a, Fg, Blue, T>
Change the background color to blue
sourcepub fn blue(self) -> ComboColorDisplay<'a, Blue, Bg, T>
pub fn blue(self) -> ComboColorDisplay<'a, Blue, Bg, T>
Change the foreground color to blue
sourcepub fn on_magenta(self) -> ComboColorDisplay<'a, Fg, Magenta, T>
pub fn on_magenta(self) -> ComboColorDisplay<'a, Fg, Magenta, T>
Change the background color to magenta
sourcepub fn magenta(self) -> ComboColorDisplay<'a, Magenta, Bg, T>
pub fn magenta(self) -> ComboColorDisplay<'a, Magenta, Bg, T>
Change the foreground color to magenta
sourcepub fn on_purple(self) -> ComboColorDisplay<'a, Fg, Magenta, T>
pub fn on_purple(self) -> ComboColorDisplay<'a, Fg, Magenta, T>
Change the background color to purple
sourcepub fn purple(self) -> ComboColorDisplay<'a, Magenta, Bg, T>
pub fn purple(self) -> ComboColorDisplay<'a, Magenta, Bg, T>
Change the foreground color to purple
sourcepub fn on_cyan(self) -> ComboColorDisplay<'a, Fg, Cyan, T>
pub fn on_cyan(self) -> ComboColorDisplay<'a, Fg, Cyan, T>
Change the background color to cyan
sourcepub fn cyan(self) -> ComboColorDisplay<'a, Cyan, Bg, T>
pub fn cyan(self) -> ComboColorDisplay<'a, Cyan, Bg, T>
Change the foreground color to cyan
sourcepub fn on_white(self) -> ComboColorDisplay<'a, Fg, White, T>
pub fn on_white(self) -> ComboColorDisplay<'a, Fg, White, T>
Change the background color to white
sourcepub fn white(self) -> ComboColorDisplay<'a, White, Bg, T>
pub fn white(self) -> ComboColorDisplay<'a, White, Bg, T>
Change the foreground color to white
sourcepub fn on_bright_black(self) -> ComboColorDisplay<'a, Fg, BrightBlack, T>
pub fn on_bright_black(self) -> ComboColorDisplay<'a, Fg, BrightBlack, T>
Change the background color to bright black
sourcepub fn bright_black(self) -> ComboColorDisplay<'a, BrightBlack, Bg, T>
pub fn bright_black(self) -> ComboColorDisplay<'a, BrightBlack, Bg, T>
Change the foreground color to bright black
sourcepub fn on_bright_red(self) -> ComboColorDisplay<'a, Fg, BrightRed, T>
pub fn on_bright_red(self) -> ComboColorDisplay<'a, Fg, BrightRed, T>
Change the background color to bright red
sourcepub fn bright_red(self) -> ComboColorDisplay<'a, BrightRed, Bg, T>
pub fn bright_red(self) -> ComboColorDisplay<'a, BrightRed, Bg, T>
Change the foreground color to bright red
sourcepub fn on_bright_green(self) -> ComboColorDisplay<'a, Fg, BrightGreen, T>
pub fn on_bright_green(self) -> ComboColorDisplay<'a, Fg, BrightGreen, T>
Change the background color to bright green
sourcepub fn bright_green(self) -> ComboColorDisplay<'a, BrightGreen, Bg, T>
pub fn bright_green(self) -> ComboColorDisplay<'a, BrightGreen, Bg, T>
Change the foreground color to bright green
sourcepub fn on_bright_yellow(self) -> ComboColorDisplay<'a, Fg, BrightYellow, T>
pub fn on_bright_yellow(self) -> ComboColorDisplay<'a, Fg, BrightYellow, T>
Change the background color to bright yellow
sourcepub fn bright_yellow(self) -> ComboColorDisplay<'a, BrightYellow, Bg, T>
pub fn bright_yellow(self) -> ComboColorDisplay<'a, BrightYellow, Bg, T>
Change the foreground color to bright yellow
sourcepub fn on_bright_blue(self) -> ComboColorDisplay<'a, Fg, BrightBlue, T>
pub fn on_bright_blue(self) -> ComboColorDisplay<'a, Fg, BrightBlue, T>
Change the background color to bright blue
sourcepub fn bright_blue(self) -> ComboColorDisplay<'a, BrightBlue, Bg, T>
pub fn bright_blue(self) -> ComboColorDisplay<'a, BrightBlue, Bg, T>
Change the foreground color to bright blue
sourcepub fn on_bright_magenta(self) -> ComboColorDisplay<'a, Fg, BrightMagenta, T>
pub fn on_bright_magenta(self) -> ComboColorDisplay<'a, Fg, BrightMagenta, T>
Change the background color to bright magenta
sourcepub fn bright_magenta(self) -> ComboColorDisplay<'a, BrightMagenta, Bg, T>
pub fn bright_magenta(self) -> ComboColorDisplay<'a, BrightMagenta, Bg, T>
Change the foreground color to bright magenta
sourcepub fn on_bright_purple(self) -> ComboColorDisplay<'a, Fg, BrightMagenta, T>
pub fn on_bright_purple(self) -> ComboColorDisplay<'a, Fg, BrightMagenta, T>
Change the background color to bright purple
sourcepub fn bright_purple(self) -> ComboColorDisplay<'a, BrightMagenta, Bg, T>
pub fn bright_purple(self) -> ComboColorDisplay<'a, BrightMagenta, Bg, T>
Change the foreground color to bright purple
sourcepub fn on_bright_cyan(self) -> ComboColorDisplay<'a, Fg, BrightCyan, T>
pub fn on_bright_cyan(self) -> ComboColorDisplay<'a, Fg, BrightCyan, T>
Change the background color to bright cyan
sourcepub fn bright_cyan(self) -> ComboColorDisplay<'a, BrightCyan, Bg, T>
pub fn bright_cyan(self) -> ComboColorDisplay<'a, BrightCyan, Bg, T>
Change the foreground color to bright cyan
sourcepub fn on_bright_white(self) -> ComboColorDisplay<'a, Fg, BrightWhite, T>
pub fn on_bright_white(self) -> ComboColorDisplay<'a, Fg, BrightWhite, T>
Change the background color to bright white
sourcepub fn bright_white(self) -> ComboColorDisplay<'a, BrightWhite, Bg, T>
pub fn bright_white(self) -> ComboColorDisplay<'a, BrightWhite, Bg, T>
Change the foreground color to bright white
Trait Implementations§
Auto Trait Implementations§
impl<'a, Fg, Bg, T> Freeze for ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> RefUnwindSafe for ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> Send for ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> Sync for ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> Unpin for ComboColorDisplay<'a, Fg, Bg, T>
impl<'a, Fg, Bg, T> UnwindSafe for ComboColorDisplay<'a, Fg, Bg, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<D> OwoColorize for D
impl<D> OwoColorize for D
source§fn fg<C: Color>(&self) -> FgColorDisplay<'_, C, Self>
fn fg<C: Color>(&self) -> FgColorDisplay<'_, C, Self>
source§fn bg<C: Color>(&self) -> BgColorDisplay<'_, C, Self>
fn bg<C: Color>(&self) -> BgColorDisplay<'_, C, Self>
source§fn black<'a>(&'a self) -> FgColorDisplay<'a, Black, Self>
fn black<'a>(&'a self) -> FgColorDisplay<'a, Black, Self>
source§fn on_black<'a>(&'a self) -> BgColorDisplay<'a, Black, Self>
fn on_black<'a>(&'a self) -> BgColorDisplay<'a, Black, Self>
source§fn red<'a>(&'a self) -> FgColorDisplay<'a, Red, Self>
fn red<'a>(&'a self) -> FgColorDisplay<'a, Red, Self>
source§fn on_red<'a>(&'a self) -> BgColorDisplay<'a, Red, Self>
fn on_red<'a>(&'a self) -> BgColorDisplay<'a, Red, Self>
source§fn green<'a>(&'a self) -> FgColorDisplay<'a, Green, Self>
fn green<'a>(&'a self) -> FgColorDisplay<'a, Green, Self>
source§fn on_green<'a>(&'a self) -> BgColorDisplay<'a, Green, Self>
fn on_green<'a>(&'a self) -> BgColorDisplay<'a, Green, Self>
source§fn yellow<'a>(&'a self) -> FgColorDisplay<'a, Yellow, Self>
fn yellow<'a>(&'a self) -> FgColorDisplay<'a, Yellow, Self>
source§fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>
fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>
source§fn blue<'a>(&'a self) -> FgColorDisplay<'a, Blue, Self>
fn blue<'a>(&'a self) -> FgColorDisplay<'a, Blue, Self>
source§fn on_blue<'a>(&'a self) -> BgColorDisplay<'a, Blue, Self>
fn on_blue<'a>(&'a self) -> BgColorDisplay<'a, Blue, Self>
source§fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>
fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>
source§fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
source§fn purple<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>
fn purple<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>
source§fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>
source§fn cyan<'a>(&'a self) -> FgColorDisplay<'a, Cyan, Self>
fn cyan<'a>(&'a self) -> FgColorDisplay<'a, Cyan, Self>
source§fn on_cyan<'a>(&'a self) -> BgColorDisplay<'a, Cyan, Self>
fn on_cyan<'a>(&'a self) -> BgColorDisplay<'a, Cyan, Self>
source§fn white<'a>(&'a self) -> FgColorDisplay<'a, White, Self>
fn white<'a>(&'a self) -> FgColorDisplay<'a, White, Self>
source§fn on_white<'a>(&'a self) -> BgColorDisplay<'a, White, Self>
fn on_white<'a>(&'a self) -> BgColorDisplay<'a, White, Self>
source§fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>
fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>
source§fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>
fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>
source§fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>
fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>
source§fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>
fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>
source§fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>
fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>
source§fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>
fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>
source§fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>
fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>
source§fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>
fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>
source§fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>
fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>
source§fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>
fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>
source§fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>
fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>
source§fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>
fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>
source§fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
source§fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
source§fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>
source§fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>
source§fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>
fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>
source§fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>
fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>
source§fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>
fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>
source§fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>
fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>
source§fn bold<'a>(&'a self) -> BoldDisplay<'a, Self>
fn bold<'a>(&'a self) -> BoldDisplay<'a, Self>
source§fn dimmed<'a>(&'a self) -> DimDisplay<'a, Self>
fn dimmed<'a>(&'a self) -> DimDisplay<'a, Self>
source§fn italic<'a>(&'a self) -> ItalicDisplay<'a, Self>
fn italic<'a>(&'a self) -> ItalicDisplay<'a, Self>
source§fn underline<'a>(&'a self) -> UnderlineDisplay<'a, Self>
fn underline<'a>(&'a self) -> UnderlineDisplay<'a, Self>
source§fn blink<'a>(&'a self) -> BlinkDisplay<'a, Self>
fn blink<'a>(&'a self) -> BlinkDisplay<'a, Self>
source§fn blink_fast<'a>(&'a self) -> BlinkFastDisplay<'a, Self>
fn blink_fast<'a>(&'a self) -> BlinkFastDisplay<'a, Self>
source§fn reversed<'a>(&'a self) -> ReversedDisplay<'a, Self>
fn reversed<'a>(&'a self) -> ReversedDisplay<'a, Self>
source§fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>
fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>
source§fn color<Color: DynColor>(
&self,
color: Color,
) -> FgDynColorDisplay<'_, Color, Self>
fn color<Color: DynColor>( &self, color: Color, ) -> FgDynColorDisplay<'_, Color, Self>
OwoColorize::fg
or
a color-specific method, such as OwoColorize::green
, Read moresource§fn on_color<Color: DynColor>(
&self,
color: Color,
) -> BgDynColorDisplay<'_, Color, Self>
fn on_color<Color: DynColor>( &self, color: Color, ) -> BgDynColorDisplay<'_, Color, Self>
OwoColorize::bg
or
a color-specific method, such as OwoColorize::on_yellow
, Read more