VolumeInstallerProxyInterface

Trait VolumeInstallerProxyInterface 

Source
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;
}

Required Associated Types§

Required Methods§

Source

fn install( &self, src: &str, image_file: &str, dst: &str, ) -> Self::InstallResponseFut

Implementors§