pub trait SendCallback:
Send
+ Sync
+ 'static {
// Required methods
fn on_success(&self, send_result: &SendResult);
fn on_exception(&self, e: Error);
}
pub trait SendCallback:
Send
+ Sync
+ 'static {
// Required methods
fn on_success(&self, send_result: &SendResult);
fn on_exception(&self, e: Error);
}