Skip to main content

WithTitle

Trait WithTitle 

Source
pub trait WithTitle {
    // Required method
    fn with_title(self) -> TableStruct;
}
Available on crate features derive or title only.
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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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