Function print_values_as_table

Source
pub fn print_values_as_table(
    title: &str,
    headers: Vec<&str>,
    rows: Vec<Vec<String>>,
)
Expand description

Prints the given values as a table.

ยงArguments

  • title - The title of the table.
  • headers - The headers of the table.
  • rows - The rows of the table as a vector of vectors of strings.