Trait ToCell
comfy_table
pub trait ToCell { pub fn to_cell(self) -> Cell; }
Allow the conversion of a type to a Cell.
By default this is implemented for all types implementing ToString.
pub fn to_cell(self) -> Cell
impl ToCell for Cell
impl<T: ToString> ToCell for T