Rust crate for printing tables on command line.
Add cli-table
in your Cargo.toms
's dependencies
section
toml
[dependencies]
cli-table = "0.4"
```rust use clitable::{format::Justify, printstdout, Cell, Style, Table};
let table = vec![ vec!["Tom".cell(), 10.cell().justify(Justify::Right)], vec!["Jerry".cell(), 15.cell().justify(Justify::Right)], vec!["Scooby Doo".cell(), 20.cell().justify(Justify::Right)], ] .table() .title(vec![ "Name".cell().bold(true), "Age (in years)".cell().bold(true), ]) .bold(true);
assert!(printstdout(table).isok()); ```
Below is the output of the table we created just now:
markdown
+------------+----------------+
| Name | Age (in years) | <-- This row and all the borders/separators
+------------+----------------+ will appear in bold
| Tom | 10 |
+------------+----------------+
| Jerry | 15 |
+------------+----------------+
| Scooby Doo | 25 |
+------------+----------------+
#[derive(Table)]
can also be used to print a Vec
or slice of struct
s as table.
```rust use clitable::{format::Justify, printstdout, Table, WithTitle};
struct User { #[table(title = "ID", justify = "Justify::Right")] id: u64, #[table(title = "First Name")] firstname: &'static str, #[table(title = "Last Name")] lastname: &'static str, }
let users = vec![ User { id: 1, firstname: "Scooby", lastname: "Doo", }, User { id: 2, firstname: "John", lastname: "Cena", }, ];
assert!(printstdout(users.withtitle()).is_ok()); ```
Below is the output of the table we created using derive macro:
markdown
+----+------------+-----------+
| ID | First Name | Last Name | <-- This row will appear in bold
+----+------------+-----------+
| 1 | Scooby | Doo |
+----+------------+-----------+
| 2 | John | Cena |
+----+------------+-----------+
title
| name
: Used to specify title of a column. Usage: #[table(title = "Title")]
justify
: Used to horizontally justify the contents of a column. Usage: #[table(justify = "Justify::Right")]
align
: Used to vertically align the contents of a column. Usage: #[table(align = "Align::Top")]
color
: Used to specify color of contents of a column. Usage: #[table(color = "Color::Red")]
bold
: Used to specify boldness of contents of a column. Usage: #[table(bold)]
skip
: Used to skip a field from table. Usage: #[table(skip)]
For more information on configurations available on derive macro, go to cli-table/examples/struct.rs
.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.