[][src]Struct crossterm::ObjectStyle

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

Struct that contains the style properties that can be applied to an displayable object.

Fields

fg_color: Option<Color>bg_color: Option<Color>attrs: Vec<Attribute>

Methods

impl ObjectStyle[src]

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

Apply an StyledObject to the passed displayable object.

pub fn new() -> ObjectStyle[src]

Get an new instance of ObjectStyle

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

Set the background color of ObjectStyle to the passed color.

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

Set the foreground color of ObjectStyle to the passed color.

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

Add an Attribute to the current text. Like italic or bold.

Trait Implementations

impl Clone for ObjectStyle[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for ObjectStyle[src]

Auto Trait Implementations

impl Send for ObjectStyle

impl Sync for ObjectStyle

Blanket Implementations

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.

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

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

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