pub trait DisplayTableRow<const N: usize> {
// Required method
fn into_table_row(self) -> [String; N];
}Expand description
Trait to allow a value to be converted into a row of information for a table.
This trait is automatically implemented for arrays and tuples whose elements implement Display.
Required Methods§
Sourcefn into_table_row(self) -> [String; N]
fn into_table_row(self) -> [String; N]
Creates a table row from this value’s data to be printed.