pub trait SupportsSpecialEmulatorCommands: AppiumClientTrait {
    // Provided methods
    fn send_sms<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        phone_number: &'life1 str,
        message: &'life2 str
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait { ... }
    fn make_gsm_call<'life0, 'life1, 'async_trait>(
        &'life0 self,
        phone_number: &'life1 str,
        action: GsmCallAction
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait { ... }
    fn set_signal_strength<'life0, 'async_trait>(
        &'life0 self,
        strength: GsmSignalStrength
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn set_gsm_voice_state<'life0, 'async_trait>(
        &'life0 self,
        state: GsmVoiceState
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn set_network_speed<'life0, 'async_trait>(
        &'life0 self,
        speed: NetworkSpeed
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn set_power_capacity<'life0, 'async_trait>(
        &'life0 self,
        percent: u8
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
    fn set_power_ac<'life0, 'async_trait>(
        &'life0 self,
        power: bool
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Special Android emulator commands like “send SMS”

Provided Methods§

source

fn send_sms<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, phone_number: &'life1 str, message: &'life2 str ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

source

fn make_gsm_call<'life0, 'life1, 'async_trait>( &'life0 self, phone_number: &'life1 str, action: GsmCallAction ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

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

source

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

source

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

source

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

source

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

Implementors§