Use Strong<> for Rust AIDL interfaces
Switch the Rust types of AIDL interfaces from e.g.
&dyn IVirtualMachine to &Strong<dyn IVirtualMachine>.
Bug: 182890877
Test: m
Change-Id: I3db33caff9b4b7822ad117d3568c665c630a5243
diff --git a/vm/src/main.rs b/vm/src/main.rs
index 6c1052f..f47d9e8 100644
--- a/vm/src/main.rs
+++ b/vm/src/main.rs
@@ -89,7 +89,7 @@
if daemonize {
// Pass the VM reference back to Virt Manager and have it hold it in the background.
- virt_manager.debugHoldVmRef(&*vm).context("Failed to pass VM to Virt Manager")
+ virt_manager.debugHoldVmRef(&vm).context("Failed to pass VM to Virt Manager")
} else {
// Wait until the VM dies. If we just returned immediately then the IVirtualMachine Binder
// object would be dropped and the VM would be killed.