Skip to content
Snippets Groups Projects
Commit d3a7878f authored by Ophir LOJKINE's avatar Ophir LOJKINE
Browse files

Make Color extend Debug

parent cd8a90a2
No related branches found
No related tags found
1 merge request!159Make Color extend Debug
......@@ -18,10 +18,11 @@ use std::io::{self, Write, Read};
use std::time::{SystemTime, Duration};
use async::async_stdin;
use std::env;
use std::fmt::Debug;
use numtoa::NumToA;
/// A terminal color.
pub trait Color {
pub trait Color: Debug {
/// Write the foreground version of this color.
fn write_fg(&self, f: &mut fmt::Formatter) -> fmt::Result;
/// Write the background version of this color.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment