Registry / cli / prettytable-rs

prettytable-rs

JSON →
library0.10.0rscratesunverified

A library for printing pretty formatted tables in terminal

# Cargo.toml [dependencies] prettytable-rs = "0.10.0"
INSTALL
IMPORT
SIG · PRETTYTABLE-RS
P
prettytable-rs
clirustv0.10.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 prettytable::Table;

Create and print a formatted table to stdout.

use prettytable::Table; use prettytable::row::Row; use prettytable::cell::Cell; let mut table = Table::new(); table.add_row(Row::new(vec![ Cell::new("Name"), Cell::new("Age"), ])); table.add_row(Row::new(vec![ Cell::new("Alice"), Cell::new("30"), ])); table.printstd();
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.10.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
OpenAI (training)
1
Resources
prettytable-rs — cargo add prettytable-rs · libregistry