pub trait CrasherProxyInterface: Send + Sync {
type CrashResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn crash(&self, message: &str) -> Self::CrashResponseFut;
}
pub trait CrasherProxyInterface: Send + Sync {
type CrashResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn crash(&self, message: &str) -> Self::CrashResponseFut;
}