termfmt 0.1.0

Opinionated formatting for library primatives with color and outputing to the terminal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::fmt::Display;

pub trait TermFmt<Value>: Display {
    fn termfmt(value: Value) -> Self;
}

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

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

pub mod color;