pub trait ITrustedAppSessionAsyncServer: Interface + Send {
// Required method
fn invokeCommand<'a, 'l1, 'async_trait>(
&'a self,
_arg_commandID: i32,
_arg_params: &'l1 _7_android_6_system_12_microfuchsia_11_trusted_app_12_ParameterSet,
) -> Pin<Box<dyn Future<Output = Result<_7_android_6_system_12_microfuchsia_11_trusted_app_8_OpResult>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'l1: 'async_trait;
// Provided method
fn get_descriptor() -> &'static str
where Self: Sized { ... }
}Required Methods§
fn invokeCommand<'a, 'l1, 'async_trait>(
&'a self,
_arg_commandID: i32,
_arg_params: &'l1 _7_android_6_system_12_microfuchsia_11_trusted_app_12_ParameterSet,
) -> Pin<Box<dyn Future<Output = Result<_7_android_6_system_12_microfuchsia_11_trusted_app_8_OpResult>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'l1: 'async_trait,
Provided Methods§
fn get_descriptor() -> &'static strwhere
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".