[][src]Struct nu_table::TextStyle

pub struct TextStyle {
    pub alignment: Alignment,
    pub color_style: Option<Style>,
}

Fields

alignment: Alignmentcolor_style: Option<Style>

Implementations

impl TextStyle[src]

pub fn new() -> TextStyle[src]

pub fn bold(&self, bool_value: Option<bool>) -> TextStyle[src]

pub fn is_bold(&self) -> bool[src]

pub fn dimmed(&self) -> TextStyle[src]

pub fn is_dimmed(&self) -> bool[src]

pub fn italic(&self) -> TextStyle[src]

pub fn is_italic(&self) -> bool[src]

pub fn underline(&self) -> TextStyle[src]

pub fn is_underline(&self) -> bool[src]

pub fn reverse(&self) -> TextStyle[src]

pub fn is_reverse(&self) -> bool[src]

pub fn hidden(&self) -> TextStyle[src]

pub fn is_hidden(&self) -> bool[src]

pub fn strikethrough(&self) -> TextStyle[src]

pub fn is_strikethrough(&self) -> bool[src]

pub fn fg(&self, foregound: Color) -> TextStyle[src]

pub fn on(&self, background: Color) -> TextStyle[src]

pub fn bg(&self, background: Color) -> TextStyle[src]

pub fn alignment(&self, align: Alignment) -> TextStyle[src]

pub fn style(&self, style: Style) -> TextStyle[src]

pub fn basic_center() -> TextStyle[src]

pub fn basic_right() -> TextStyle[src]

pub fn basic_left() -> TextStyle[src]

pub fn default_header() -> TextStyle[src]

pub fn with_attributes(bo: bool, al: Alignment, co: Color) -> TextStyle[src]

pub fn with_style(al: Alignment, style: Style) -> TextStyle[src]

Trait Implementations

impl Clone for TextStyle[src]

impl Copy for TextStyle[src]

impl Debug for TextStyle[src]

impl Default for TextStyle[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.