pub trait Appender: Debug + Send + Sync + 'static { // Required method fn append(&self, msg: &Message) -> Result<(), String>; }