pub trait Cells {
// Required method
fn fmt(f: &mut CellsFormatter<'_, '_, Self>);
}Expand description
A data structure that can be formatted into cells.
The number of columns must be statically determined from the type.
If the number of columns is dynamically determined, CellsSchema must be used. See cells_schema for details.
Required Methods§
sourcefn fmt(f: &mut CellsFormatter<'_, '_, Self>)
fn fmt(f: &mut CellsFormatter<'_, '_, Self>)
Define columns. see CellsFormatter for details.
Object Safety§
This trait is not object safe.