tabled 0.9.0

An easy to use library for pretty print tables of Rust `struct`s and `enum`s.
use tabled::{
    locator::ByColumnName,
    object::{Columns, Rows, Segment},
    style::HorizontalLine,
    Alignment, Disable, Modify, Style,
};

use crate::util::{create_table, test_table};

mod util;

test_table!(
    disable_rows,
    create_table::<3, 3>().with(Disable::row(Rows::new(1..=2))),
    "+---+----------+----------+----------+"
    "| N | column 0 | column 1 | column 2 |"
    "+---+----------+----------+----------+"
    "| 2 |   2-0    |   2-1    |   2-2    |"
    "+---+----------+----------+----------+"
);

test_table!(
    disable_header,
    create_table::<3, 3>().with(Style::psql()).with(Disable::row(Rows::first())),
    " 0 | 0-0 | 0-1 | 0-2 "
    "---+-----+-----+-----"
    " 1 | 1-0 | 1-1 | 1-2 "
    " 2 | 2-0 | 2-1 | 2-2 "
);

test_table!(
    disable_all_table_via_rows,
    create_table::<3, 3>()
        .with(Style::psql())
        .with(Disable::row(Columns::new(..))),
    ""
);

test_table!(
    disable_header_with_new_styling,
    create_table::<3, 3>()
        .with(Modify::new(Segment::all()).with(Alignment::left()))
        .with(Disable::row(Rows::new(..1)))
        .with(Style::modern().off_horizontal().horizontals([HorizontalLine::new(1, Style::modern().get_horizontal())])),
    "┌───┬─────┬─────┬─────┐"
    "│ 0 │ 0-0 │ 0-1 │ 0-2 │"
    "├───┼─────┼─────┼─────┤"
    "│ 1 │ 1-0 │ 1-1 │ 1-2 │"
    "│ 2 │ 2-0 │ 2-1 │ 2-2 │"
    "└───┴─────┴─────┴─────┘"
);

test_table!(
    disable_columns,
    create_table::<3, 3>().with(Style::psql()).with(Disable::column(Columns::first())),
    " column 0 | column 1 | column 2 "
    "----------+----------+----------"
    "   0-0    |   0-1    |   0-2    "
    "   1-0    |   1-1    |   1-2    "
    "   2-0    |   2-1    |   2-2    "
);

test_table!(
    disable_column_by_name,
    create_table::<3, 3>().with(Style::psql())
        .with(Disable::column(ByColumnName::new("column 1")))
        .with(Disable::column(ByColumnName::new("column 3"))),
    " N | column 0 | column 2 "
    "---+----------+----------"
    " 0 |   0-0    |   0-2    "
    " 1 |   1-0    |   1-2    "
    " 2 |   2-0    |   2-2    "
);

test_table!(
    disable_all_table_via_columns,
    create_table::<3, 3>()
        .with(Style::psql())
        .with(Modify::new(Segment::all()).with(Alignment::left()))
        .with(Disable::column(Columns::new(..))),
    ""
);