pub trait WebdriverUrlInfo {
    // Required method
    fn driver_urls<'life0, 'async_trait>(
        &'life0 self,
        limit: usize
    ) -> Pin<Box<dyn Future<Output = Result<Vec<String>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Provides information for determining which url to download.

Required Methods§

source

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

Lists viable driver urls, up to limit.

Implementors§

source§

impl<T> WebdriverUrlInfo for Twhere T: BinaryMajorVersionHintUrlInfo + Sync,