Trait cli_table::Table[][src]

pub trait Table {
    fn table(self) -> TableStruct;
}

Trait to convert raw type into table

Required methods

fn table(self) -> TableStruct[src]

Converts raw type to a table

Loading content...

Implementors

impl Table for TableStruct[src]

impl<T, R> Table for T where
    T: IntoIterator<Item = R>,
    R: Row
[src]

Loading content...