[][src]Struct termimad::LineStyle

pub struct LineStyle {
    pub compound_style: CompoundStyle,
    pub align: Alignment,
}

A style applicable to a type of line.

It's made of

  • the base style of the compounds
  • the alignment

Fields

compound_style: CompoundStylealign: Alignment

Methods

impl LineStyle[src]

pub fn set_fg(&mut self, color: Color)[src]

Set the foreground color to the passed color.

pub fn set_bg(&mut self, color: Color)[src]

Set the background color to the passed color.

pub fn set_fgbg(&mut self, fg: Color, bg: Color)[src]

Set the colors to the passed ones

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

Add an Attribute. Like italic, underlined or bold.

pub fn repeat_string(&self, f: &mut Formatter, s: &str, count: usize) -> Result[src]

Write a string several times with the line compound style

pub fn repeat_space(&self, f: &mut Formatter, count: usize) -> Result[src]

Write 0 or more spaces with the line's compound style

Trait Implementations

impl Default for LineStyle[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, 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]