1 2 3 4
pub trait Writer: Send + std::fmt::Debug + std::any::Any { fn write(&mut self, line: &str) -> std::io::Result<()>; }