pub type BoxWrite = Box<dyn Write + Send + Sync + 'static>;
Expand description

A type-erased boxed writer that can be sent between threads safely.

Aliased Type§

struct BoxWrite(Unique<dyn Write + Send + Sync>, Global);

Fields§

§0: Unique<dyn Write + Send + Sync>§1: Global