1use ansi_colors::*; 2 3fn main(){ 4 let mut str1 = ColouredStr::new("ERROR!!!"); 5 str1.to_error(); 6 println!("{}",str1); 7}