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§
Sourcefn with_title(self) -> TableStruct
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".