Trait cli_table::Table

source ·
pub trait Table {
    // Required method
    fn table(self) -> TableStruct;
}
Expand description

Trait to convert raw type into table

Required Methods§

source

fn table(self) -> TableStruct

Converts raw type to a table

Implementors§

source§

impl Table for TableStruct

source§

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