termfmt 0.1.4

Opinionated formatting for library primatives with color and outputing to the terminal.
Documentation
use std::fmt::Display;

pub use {color::TermStyle, output::TermOutput};

pub trait TermFmt<Value>
where
    Value: Display,
{
    fn termfmt(self) -> Value;
}

#[cfg(feature = "chrono")]
pub mod chrono;

#[cfg(feature = "command")]
pub mod command;

mod color;
mod output;