tabled 0.20.0

An easy to use library for pretty print tables of Rust `struct`s and `enum`s.
Documentation
use tabled::{
    settings::{
        location::Locator,
        object::{Columns, Object, Rows},
        Color, Style,
    },
    Table, Tabled,
};

#[derive(Tabled)]
struct Bsd {
    distribution: String,
    year_of_first_release: usize,
    is_active: bool,
}

fn main() {
    #[rustfmt::skip]
    let data = vec![
        Bsd { distribution: String::from("BSD"), year_of_first_release: 1978, is_active: false },
        Bsd { distribution: String::from("SunOS"), year_of_first_release: 1982, is_active: false },
        Bsd { distribution: String::from("NetBSD"), year_of_first_release: 1993, is_active: true },
        Bsd { distribution: String::from("FreeBSD"), year_of_first_release: 1993, is_active: true },
        Bsd { distribution: String::from("OpenBSD"), year_of_first_release: 1995, is_active: true },
    ];

    let mut table = Table::new(data);
    table
        .with(Style::psql())
        .modify(Rows::first(), Color::BG_BLUE)
        .modify(Locator::content("false"), Color::BG_RED)
        .modify(
            Locator::value(Columns::one(1).not(Rows::first()), |new, old| new > old),
            Color::BG_GREEN,
        )
        .modify(
            Locator::value(Columns::one(1).not(Rows::first()), |new, old| new < old),
            Color::BG_GREEN,
        );

    println!("{table}");
}