pub enum WebdriverDownloadError {
Url(UrlError),
Install(InstallationError),
Verify(VerificationError),
Move(Error),
NoVersionPassedVerification(usize),
Other(Error),
}
Variants§
Url(UrlError)
Install(InstallationError)
Verify(VerificationError)
Move(Error)
NoVersionPassedVerification(usize)
Other(Error)
Trait Implementations§
source§impl Debug for WebdriverDownloadError
impl Debug for WebdriverDownloadError
source§impl Display for WebdriverDownloadError
impl Display for WebdriverDownloadError
source§impl Error for WebdriverDownloadError
impl Error for WebdriverDownloadError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for WebdriverDownloadError
impl From<Error> for WebdriverDownloadError
source§impl From<Error> for WebdriverDownloadError
impl From<Error> for WebdriverDownloadError
source§impl From<InstallationError> for WebdriverDownloadError
impl From<InstallationError> for WebdriverDownloadError
source§fn from(source: InstallationError) -> Self
fn from(source: InstallationError) -> Self
Converts to this type from the input type.
source§impl From<UrlError> for WebdriverDownloadError
impl From<UrlError> for WebdriverDownloadError
source§impl From<VerificationError> for WebdriverDownloadError
impl From<VerificationError> for WebdriverDownloadError
source§fn from(source: VerificationError) -> Self
fn from(source: VerificationError) -> Self
Converts to this type from the input type.