pub trait SupportsAndroidLocation: AppiumClientTrait {
    // Provided method
    fn set_android_location<'life0, 'async_trait>(
        &'life0 self,
        location: AndroidGeoLocation
    ) -> Pin<Box<dyn Future<Output = Result<Location, CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Set android geolocation (with extended options)

Provided Methods§

source

fn set_android_location<'life0, 'async_trait>( &'life0 self, location: AndroidGeoLocation ) -> Pin<Box<dyn Future<Output = Result<Location, CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§