Registry / utility / tabled

tabled

JSON →
library0.21.0rscratesunverified

An easy to use library for pretty print tables of Rust `struct`s and `enum`s.

# Cargo.toml [dependencies] tabled = "0.21.0"
INSTALL
IMPORT
SIG · TABLED
T
tabled
utilityrustv0.21.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Table
use tabled::Table;

Creates a formatted table from a list of structs.

use tabled::Table; #[derive(tabled::Tabled)] struct Person { name: String, age: u32, } fn main() { let data = vec![ Person { name: "Alice".into(), age: 30 }, Person { name: "Bob".into(), age: 25 }, ]; let table = Table::new(&data); println!("{}", table); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.21.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
7
Amazon
1
Resources
tabled — cargo add tabled · libregistry