pub trait CrasherProxyInterface: Send + Sync {
type CrashResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn crash(&self, message: &str) -> Self::CrashResponseFut;
}Required Associated Types§
Required Methods§
fn crash(&self, message: &str) -> Self::CrashResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".