pub trait JackLoggingHandler: Send { // Required methods fn on_error(&mut self, msg: &str); fn on_info(&mut self, msg: &str); }
An object that can receive info and error messages from JACK.
Called when JACK displays an error message.
Called when JACK displays an info message.