Skip to main content

DelayWatcherProxyInterface

Trait DelayWatcherProxyInterface 

Source
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§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§