prettytable::row! [] [src]

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

This macro simplifies Row creation

Example

let row = row!["Element 1", "Element 2", "Element 3"];
// Do something with row