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>;
}

Required Associated Types§

source

type PingResponseFut: Future<Output = Result<u64, Error>> + Send

Required Methods§

source

fn ping(&self) -> Self::PingResponseFut

source

fn crash(&self) -> Result<(), Error>

Implementors§