pub trait Outputer: Write + Send + Sync + 'static {
    fn boxed(self) -> Result<Box<dyn Outputer>, Error>;
    fn desc(&self) -> &str;
}

Required Methods

Implementations on Foreign Types

Implementors