pub trait ErrorHandler: UnwindSafe + RefUnwindSafe + Copy + Send + 'static {
    fn handle_error(&self, port: i64, error: Error);
fn handle_error_sync(&self, error: Error) -> Vec<u8>; }

Required methods

Implementors