Trait cli_table::Row

source ·
pub trait Row {
    // Required method
    fn row(self) -> RowStruct;
}
Expand description

Trait to convert raw types into rows

Required Methods§

source

fn row(self) -> RowStruct

Converts raw type to rows of a table

Implementors§

source§

impl Row for RowStruct

source§

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