Struct libtableformat::ContentStyle[][src]

pub struct ContentStyle {
    pub fg_color: Option<Color>,
    pub bg_color: Option<Color>,
    pub alignment: Alignment,
    pub wrap: Wrap,
    pub width: ColumnBreak,
}

Represents the style to apply to a line of content.

Fields

fg_color: Option<Color>bg_color: Option<Color>alignment: Alignmentwrap: Wrapwidth: ColumnBreak

Implementations

impl ContentStyle[src]

pub fn default() -> ContentStyle[src]

pub fn new(
    fg_color: Option<Color>,
    bg_color: Option<Color>,
    alignment: Alignment,
    wrap: Wrap,
    width: ColumnBreak
) -> ContentStyle
[src]

pub fn from_format(format: &str) -> ContentStyle[src]

Trait Implementations

impl Clone for ContentStyle[src]

impl Debug for ContentStyle[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> 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.