[][src]Struct mortal::terminal::Theme

pub struct Theme {
    pub fg: Option<Color>,
    pub bg: Option<Color>,
    pub style: Style,
}

Represents a terminal output theme.

A theme consists of a foreground and background color as well as a style.

Fields

fg: Option<Color>

Foreground color

bg: Option<Color>

Background color

style: Style

Style

Methods

impl Theme[src]

pub fn new<F, B, S>(fg: F, bg: B, style: S) -> Theme where
    F: Into<Option<Color>>,
    B: Into<Option<Color>>,
    S: Into<Option<Style>>, 
[src]

Creates a new theme with given values.

Note

In order to create a Theme using default values you might want to use Theme::default() instead.

pub fn fg<F>(self, fg: F) -> Theme where
    F: Into<Option<Color>>, 
[src]

Sets the foreground color on the given Theme and returns the new.

pub fn bg<B>(self, bg: B) -> Theme where
    B: Into<Option<Color>>, 
[src]

Sets the background color on the given Theme and returns the new.

pub fn style<S>(self, style: S) -> Theme where
    S: Into<Option<Style>>, 
[src]

Sets the style on the given Theme and returns the new.

Trait Implementations

impl Clone for Theme[src]

impl Copy for Theme[src]

impl Debug for Theme[src]

impl Default for Theme[src]

Auto Trait Implementations

impl RefUnwindSafe for Theme

impl Send for Theme

impl Sync for Theme

impl Unpin for Theme

impl UnwindSafe for Theme

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.