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 { ... }
}

Required Methods§

Source

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,

Source

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 Methods§

Source

fn get_descriptor() -> &'static str
where Self: Sized,

Implementors§