pub trait StructTable {
// Required method
fn build(&self, options: &OutputConfig) -> (Vec<String>, Vec<Vec<String>>);
// Provided method
fn status(&self) -> Vec<Option<String>> { ... }
}Expand description
Trait for structures that should be represented as a table in the human output mode