ez_colorize

Crates.ioez_colorize
lib.rsez_colorize
version0.1.0
sourcesrc
created_at2022-06-30 19:33:26.331306
updated_at2022-06-30 19:33:26.331306
descriptionLibrary to easily change the color of output text
homepagehttps://github.com/KurlykovDanila
repositoryhttps://github.com/KurlykovDanila/EzColorize
max_upload_size
id616618
size3,221
Danila (KurlykovDanila)

documentation

README

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());
}
Commit count: 4

cargo fmt