pub trait AeronErrorHandlerCallback {
// Required method
fn handle_aeron_error_handler(&mut self, errcode: c_int, message: &str);
}
Expand description
The error handler to be called when an error occurs.
(note you must copy any arguments that you use afterwards even those with static lifetimes)