pub trait DocboxServiceError:
Error
+ Send
+ Sync
+ 'static {
// Provided methods
fn reason(&self) -> String { ... }
fn type_name(&self) -> &str { ... }
}Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".