rawcmd_table 0.1.0

Command-line table typewriter.
Documentation
  • Coverage
  • 66.67%
    2 out of 3 items documented0 out of 0 items with examples
  • Size
  • Source code size: 9.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.23 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 24s Average build duration of successful builds.
  • all releases: 24s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • xpepermint/tbltyp
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • xpepermint

Command-line table typewriter.

Example:

let cell = Cell::new()
    .set_width(20)
    .set_text("Text")
    .set_text_pad('+');
let row = super::Row::new()
    .add_cell(cell)
    .build_rows();