pub enum InstallationError {
Download(Error),
UnknownArchiveFormat,
ExtractZip(ZipError),
ExtractTar(Error),
Write(Error),
AddExecutePermission(AddExecutePermissionError),
Other(Error),
}
Variants§
Download(Error)
UnknownArchiveFormat
ExtractZip(ZipError)
ExtractTar(Error)
Write(Error)
AddExecutePermission(AddExecutePermissionError)
Other(Error)
Trait Implementations§
source§impl Debug for InstallationError
impl Debug for InstallationError
source§impl Display for InstallationError
impl Display for InstallationError
source§impl Error for InstallationError
impl Error for InstallationError
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<AddExecutePermissionError> for InstallationError
impl From<AddExecutePermissionError> for InstallationError
source§fn from(source: AddExecutePermissionError) -> Self
fn from(source: AddExecutePermissionError) -> Self
Converts to this type from the input type.
source§impl From<Error> for InstallationError
impl From<Error> for InstallationError
source§impl From<Error> for InstallationError
impl From<Error> for InstallationError
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.