pub trait CrasherProxyInterface: Send + Sync { type PingResponseFut: Future<Output = Result<u64, Error>> + Send; // Required methods fn ping(&self) -> Self::PingResponseFut; fn crash(&self) -> Result<(), Error>; }