pub trait Listener: Send + Sync {
    fn warning(&self, s: String);
    fn info(&self, s: String);
}

Required Methods

Implementors