Trait cli_table::Row[][src]

pub trait Row {
    fn row(self) -> RowStruct;
}

Trait to convert raw types into rows

Required methods

fn row(self) -> RowStruct[src]

Converts raw type to rows of a table

Loading content...

Implementors

impl Row for RowStruct[src]

impl<T, C> Row for T where
    T: IntoIterator<Item = C>,
    C: Cell
[src]

Loading content...