[][src]Trait comfy_table::ToRow

pub trait ToRow {
    fn to_row(self) -> Row;
}

Allow the conversion of a type to a row.

By default this is implemented for everything implementing ToCells.
This means every iterable implementing ToString.

Required methods

fn to_row(self) -> Row[src]

Loading content...

Implementors

impl ToRow for Row[src]

impl<T: ToCells> ToRow for T[src]

Loading content...