pub trait WebdriverDownloadInfo: WebdriverUrlInfo + WebdriverInstallationInfo + WebdriverVerificationInfo + Sync {
// Required methods
fn is_installed<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn download_verify_install<'life0, 'async_trait>(
&'life0 self,
max_tries: usize
) -> Pin<Box<dyn Future<Output = Result<(), WebdriverDownloadError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Information required to download, verify, install driver.