[][src]Trait comfy_table::ToCell

pub trait ToCell {
    fn to_cell(self) -> Cell;
}

Allow the conversion of a type to a Cell.

By default this is implemented for all types implementing ToString.

Required methods

fn to_cell(self) -> Cell[src]

Loading content...

Implementors

impl ToCell for Cell[src]

impl<T: ToString> ToCell for T[src]

Loading content...