pub trait VolumeInstallerProxyInterface: Send + Sync {
type InstallResponseFut: Future<Output = Result<VolumeInstallerInstallResult, Error>> + Send;
// Required method
fn install(
&self,
src: &str,
image_file: &str,
dst: &str,
) -> Self::InstallResponseFut;
}