Trait cli_table::WithTitle

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

Trait for creating a table with titles at the top

Required Methods§

source

fn with_title(self) -> TableStruct

Creates a table with title at the top

Implementors§

source§

impl<'a, T, R> WithTitle for T
where T: IntoIterator<Item = &'a R>, R: Title + 'static, &'a R: Row,