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;