Trait 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,