pub trait TypeWrite<T> { // Required method fn write(&mut self, target: T) -> Result<()>; }
A generic write method for a specific type.
If they write to the Terminal, then write to Stdout.