2020-09-21 13:26:06 -06:00
|
|
|
mod cli_output;
|
|
|
|
pub mod display;
|
|
|
|
pub use cli_output::*;
|
2020-09-28 14:18:31 -06:00
|
|
|
|
|
|
|
pub trait QuietDisplay: std::fmt::Display {
|
|
|
|
fn write_str(&self, w: &mut dyn std::fmt::Write) -> std::fmt::Result {
|
|
|
|
write!(w, "{}", self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait VerboseDisplay: std::fmt::Display {
|
|
|
|
fn write_str(&self, w: &mut dyn std::fmt::Write) -> std::fmt::Result {
|
|
|
|
write!(w, "{}", self)
|
|
|
|
}
|
|
|
|
}
|