pub type BoxWrite = Box<dyn Write + Send + Sync + 'static>;
A type-erased boxed writer that can be sent between threads safely.
struct BoxWrite(/* private fields */);