Struct termimad::LineStyle[][src]

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

Implementations

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 Clone for LineStyle[src]

impl Default for LineStyle[src]

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

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.