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

Required Associated Types§

source

type OnStartResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

source

fn on_start( &self, options: &AttemptOptions, monitor: ServerEnd<MonitorMarker> ) -> Self::OnStartResponseFut

Implementors§