Struct tabled::FormatFrom[][src]

pub struct FormatFrom<A>(pub Vec<A>)
where
    A: Into<String>
;
Expand description

FormatFrom repeatedly uses first possible element from given array unless there’s any elements.

Example

use tabled::{Table, FormatFrom, Row, Modify};

let data = vec![
    (0, "Grodno", true),
    (1, "Minsk", true),
    (2, "Hamburg", false),
    (3, "Brest", true),
];

let table = Table::new(&data)
               .with(Modify::new(Row(..1)).with(FormatFrom(vec!["N", "City", "is in Belarus"])))
               .to_string();

assert_eq!(table, "+---+---------+---------------+\n\
                   | N |  City   | is in Belarus |\n\
                   +---+---------+---------------+\n\
                   | 0 | Grodno  |     true      |\n\
                   +---+---------+---------------+\n\
                   | 1 |  Minsk  |     true      |\n\
                   +---+---------+---------------+\n\
                   | 2 | Hamburg |     false     |\n\
                   +---+---------+---------------+\n\
                   | 3 |  Brest  |     true      |\n\
                   +---+---------+---------------+\n");

Tuple Fields

0: Vec<A>

Trait Implementations

Modification function of a Cell

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.