fix: add missing trait impl
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -30,6 +30,10 @@ impl VmHostClient for LibVirt {
|
|||||||
todo!()
|
todo!()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn reinstall_vm(&self, cfg: &FullVmInfo) -> anyhow::Result<()> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
|
||||||
async fn get_vm_state(&self, vm: &Vm) -> anyhow::Result<VmState> {
|
async fn get_vm_state(&self, vm: &Vm) -> anyhow::Result<VmState> {
|
||||||
todo!()
|
todo!()
|
||||||
}
|
}
|
||||||
|
@ -768,6 +768,10 @@ impl VmHostClient for MockVmHost {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn reinstall_vm(&self, cfg: &FullVmInfo) -> anyhow::Result<()> {
|
||||||
|
todo!()
|
||||||
|
}
|
||||||
|
|
||||||
async fn get_vm_state(&self, vm: &Vm) -> anyhow::Result<VmState> {
|
async fn get_vm_state(&self, vm: &Vm) -> anyhow::Result<VmState> {
|
||||||
let vms = self.vms.lock().await;
|
let vms = self.vms.lock().await;
|
||||||
if let Some(vm) = vms.get(&vm.id) {
|
if let Some(vm) = vms.get(&vm.id) {
|
||||||
|
Reference in New Issue
Block a user