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