Enum self_update::errors::Error
[−]
[src]
pub enum Error {
Update(String),
Config(String),
Io(Error),
Json(Error),
Reqwest(Error),
SemVer(SemVerError),
}Variants
Update(String)Config(String)Io(Error)Json(Error)Reqwest(Error)SemVer(SemVerError)Trait Implementations
impl Debug for Error[src]
impl Display for Error[src]
impl Error for Error[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<Error> for Error[src]
impl From<Error> for Error[src]
impl From<Error> for Error[src]
impl From<SemVerError> for Error[src]
fn from(e: SemVerError) -> Error
Performs the conversion.