pub trait DebugTableRow<const N: usize> {
// Required method
fn into_debug_table_row(self) -> [String; N];
}
Expand description
Required Methods§
Sourcefn into_debug_table_row(self) -> [String; N]
fn into_debug_table_row(self) -> [String; N]
Creates a debug table row from this value’s data to be printed.