Expand description
An API to easily print a two dimensional array to stdout.
§Example
use grid_printer::GridPrinter;
let cars = vec![
vec!["Make", "Model", "Color", "Year", "Price", ],
vec!["Ford", "Pinto", "Green", "1978", "$750.00", ],
vec!["Toyota", "Tacoma", "Red", "2006", "$15,475.23", ],
vec!["Lamborghini", "Diablo", "Yellow", "2001", "$238,459.99", ],
];
let rows = cars.len();
let cols = cars[0].len();
let printer = GridPrinter::builder(rows, cols)
.col_spacing(4)
.build();
printer.print(&cars);
§Output:
Make Model Color Year Price
Ford Pinto Green 1978 $750.00
Toyota Tacoma Red 2006 $15,475.23
Lamborghini Diablo Yellow 2001 $238,459.99
Modules§
- style
- The style module provides an API to customize the style settings for a GridPrinter instance, such as the font foreground color, the font background color, and the font text style (bold, italic, strike-through, etc.).
Structs§
- Grid
Printer - An API to easily print a two dimensional array to stdout.
- Grid
Printer Builder - A Builder to create/customize a GridPrinter instance