prettytable::table! [] [src]

macro_rules! table {
    ($([$($value:expr), *]), *) => { ... };
}

Create a table filled with some values

All the arguments used for elements must implement the std::string::ToString trait

Syntax

table!([Element1_ row1, Element2_ row1, ...], [Element1_row2, ...], ...);

Example

// Create a table initialized with some rows :
let tab = table!(["Element1", "Element2", "Element3"],
                 [1, 2, 3],
                 ["A", "B", "C"]
                 );