pub trait ProvisioningMonitorProxyInterface: Send + Sync {
type WatchProgressResponseFut: Future<Output = Result<ProvisioningMonitorWatchProgressResult, Error>> + Send;
// Required method
fn watch_progress(&self) -> Self::WatchProgressResponseFut;
}