pub trait JackLoggingHandler: Send {
    fn on_error(&mut self, msg: &str);
    fn on_info(&mut self, msg: &str);
}
Expand description

An object that can receive info and error messages from JACK.

Required Methods

Called when JACK displays an error message.

Called when JACK displays an info message.

Implementors