exhibit
is a small Rust library for controlling the display
of any Display
able type.
The main functionality is provided by the ExhibitExt
trait.
```rust use exhibit::ExhibitExt;
let text = "\x1b[31mHello, 🌎!\x1b[0m" .exhibit() .redact(true);
asserteq!( text.tostring(), "\x1b[31m▆▅▆▆▅, ▇▇!\x1b[0m\n", ); ```