ez_colorize 0.1.0

Library to easily change the color of output text
Documentation
  • Coverage
  • 0%
    0 out of 19 items documented0 out of 18 items with examples
  • Size
  • Source code size: 2.88 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.19 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • KurlykovDanila/EzColorize
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • KurlykovDanila

EzColorize

Library to easily change the color of output text

Example

use ez_colorize::ColorizeDebug;

#[derive(Debug)]
struct MyData{}

fn main() {
    let a = 23;
    println!("{}", a.red());

    let my_data = MyData{};
    println!("{}", my_data.blue());
}