pub trait SendError {
// Required method
fn send(&mut self, error: &Error);
// Provided methods
fn report(&mut self, file_code: u8, code: u8, line: u32) { ... }
fn reportd(&mut self, file_code: u8, code: u8, line: u32, detail: u32) { ... }
}Required Methods§
Provided Methods§
fn report(&mut self, file_code: u8, code: u8, line: u32)
fn reportd(&mut self, file_code: u8, code: u8, line: u32, detail: u32)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".