Trait cli_table::WithTitle[][src]

pub trait WithTitle {
    fn with_title(self) -> TableStruct;
}
This is supported on crate features title or derive only.

Trait for creating a table with titles at the top

Required methods

fn with_title(self) -> TableStruct[src]

Creates a table with title at the top

Loading content...

Implementors

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

Loading content...