pub trait ITrustedAppAsyncServer: Interface + Send {
    // Required method
    fn openSession<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        _arg_params: &'life1 _7_android_6_system_12_microfuchsia_11_trusted_app_12_ParameterSet,
        _arg_result: &'life2 mut _7_android_6_system_12_microfuchsia_11_trusted_app_8_OpResult,
    ) -> Pin<Box<dyn Future<Output = Result<Strong<dyn _7_android_6_system_12_microfuchsia_11_trusted_app_18_ITrustedAppSession>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;

    // Provided method
    fn get_descriptor() -> &'static str
       where Self: Sized { ... }
}

Required Methods§

Source

fn openSession<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, _arg_params: &'life1 _7_android_6_system_12_microfuchsia_11_trusted_app_12_ParameterSet, _arg_result: &'life2 mut _7_android_6_system_12_microfuchsia_11_trusted_app_8_OpResult, ) -> Pin<Box<dyn Future<Output = Result<Strong<dyn _7_android_6_system_12_microfuchsia_11_trusted_app_18_ITrustedAppSession>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Provided Methods§

Source

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

Implementors§