pub trait AttemptsMonitorProxyInterface: Send + Sync {
type OnStartResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_start(
&self,
options: &AttemptOptions,
monitor: ServerEnd<MonitorMarker>,
) -> Self::OnStartResponseFut;
}