pub trait IMicrofuchsiaAsyncServer: Interface + Send {
// Required methods
fn setHostProxy<'a, 'l1, 'async_trait>(
&'a self,
_arg_proxy: &'l1 Strong<dyn _7_android_6_system_12_microfuchsia_10_vm_service_10_IHostProxy>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'l1: 'async_trait;
fn trustedAppUuids<'a, 'async_trait>(
&'a self,
) -> Pin<Box<dyn Future<Output = Result<Vec<String>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait;
// Provided method
fn get_descriptor() -> &'static str
where Self: Sized { ... }
}