list_display 0.1.1

display list
Documentation
  • Coverage
  • 0%
    0 out of 8 items documented0 out of 0 items with examples
  • Size
  • Source code size: 17.89 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.35 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 25s Average build duration of successful builds.
  • all releases: 25s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Vzz1c

list_display

use list_display::*;
fn main() {
    let mut title = VecRowBox::new();
    let mut a1 = VecRowBox::new();
    title.push("Command".bold().blue());
    title.push("Summary".bold().blue());
    a1.push("install".purple());
    a1.push("help".purple());
    let mut box_list = VecBoxList::new();
    box_list.push(title);
    box_list.push(a1);
    box_list.build_rowlist_to_columslist().direction(vec![1], Right).print_list();
}