pub trait DelayWatcherProxyInterface: Send + Sync {
type WatchDelayResponseFut: Future<Output = Result<DelayWatcherWatchDelayResponse, Error>> + Send;
// Required method
fn watch_delay(
&self,
payload: &DelayWatcherWatchDelayRequest,
) -> Self::WatchDelayResponseFut;
}Required Associated Types§
type WatchDelayResponseFut: Future<Output = Result<DelayWatcherWatchDelayResponse, Error>> + Send
Required Methods§
fn watch_delay( &self, payload: &DelayWatcherWatchDelayRequest, ) -> Self::WatchDelayResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".