pub trait RestarterProxyInterface: Send + Sync {
type RestartResponseFut: Future<Output = Result<RestarterRestartResult, Error>> + Send;
// Required method
fn restart(&self) -> Self::RestartResponseFut;
}
pub trait RestarterProxyInterface: Send + Sync {
type RestartResponseFut: Future<Output = Result<RestarterRestartResult, Error>> + Send;
// Required method
fn restart(&self) -> Self::RestartResponseFut;
}