Trait cli_table::Cell

source ·
pub trait Cell {
    // Required method
    fn cell(self) -> CellStruct;
}
Expand description

Trait to convert raw types into cells

Required Methods§

source

fn cell(self) -> CellStruct

Converts raw type to cell of a table

Implementors§

source§

impl Cell for CellStruct

source§

impl<T> Cell for T
where T: Display,