[][src]Struct tui::buffer::Cell

pub struct Cell {
    pub symbol: String,
    pub style: Style,
}

A buffer cell

Fields

symbol: Stringstyle: Style

Methods

impl Cell[src]

pub fn set_symbol(&mut self, symbol: &str) -> &mut Cell[src]

pub fn set_char(&mut self, ch: char) -> &mut Cell[src]

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

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

pub fn set_modifier(&mut self, modifier: Modifier) -> &mut Cell[src]

pub fn set_style(&mut self, style: Style) -> &mut Cell[src]

pub fn reset(&mut self)[src]

Trait Implementations

impl Clone for Cell[src]

impl Debug for Cell[src]

impl Default for Cell[src]

impl PartialEq<Cell> for Cell[src]

impl StructuralPartialEq for Cell[src]

Auto Trait Implementations

impl RefUnwindSafe for Cell

impl Send for Cell

impl Sync for Cell

impl Unpin for Cell

impl UnwindSafe for Cell

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 = !

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.