pub trait HasSupportedPerformanceDataType: AppiumClientTrait {
    // Provided methods
    fn supported_performance_data_type<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<String>, CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn performance_data<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        package: &'life1 str,
        data_type: &'life2 str,
        read_timeout: u32
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Vec<Value>>, CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait { ... }
}
Expand description

Device traits that Appium is able to read

Provided Methods§

source

fn supported_performance_data_type<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Vec<String>, CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

source

fn performance_data<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, package: &'life1 str, data_type: &'life2 str, read_timeout: u32 ) -> Pin<Box<dyn Future<Output = Result<Vec<Vec<Value>>, CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§