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