Trait Row
cli_table
pub trait Row { fn row(self) -> RowStruct; }
Trait to convert raw types into rows
fn row(self) -> RowStruct
Converts raw type to rows of a table
impl Row for RowStruct
impl<T, C> Row for T where T: IntoIterator<Item = C>, C: Cell,