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