[][src]Struct crossterm_style::ObjectStyle

pub struct ObjectStyle {
    pub fg_color: Option<Color>,
    pub bg_color: Option<Color>,
    pub attrs: Vec<Attribute>,
}

An object style.

Fields

fg_color: Option<Color>

The foreground color.

bg_color: Option<Color>

The background color.

attrs: Vec<Attribute>

List of attributes.

Methods

impl ObjectStyle[src]

pub fn apply_to<D: Display + Clone>(&self, val: D) -> StyledObject<D>[src]

Creates a StyledObject by applying the style to the given val.

pub fn new() -> ObjectStyle[src]

Creates a new ObjectStyle.

pub fn bg(self, color: Color) -> ObjectStyle[src]

Sets the background color.

pub fn fg(self, color: Color) -> ObjectStyle[src]

Sets the foreground color.

pub fn add_attr(&mut self, attr: Attribute)[src]

Adds the attribute.

You can add more attributes by calling this method multiple times.

Trait Implementations

impl Clone for ObjectStyle[src]

impl Default for ObjectStyle[src]

impl Debug for ObjectStyle[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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