shadow-rs 0.11.0

A build-time information stored in your rust project
Documentation
use std::convert::From;
use std::error::Error;
use std::string::FromUtf8Error;

pub type SdResult<T> = Result<T, ShadowError>;

#[derive(Debug)]
pub enum ShadowError {
    String(String),
}

impl ShadowError {
    pub fn new(err: impl Error) -> Self {
        ShadowError::String(err.to_string())
    }
}

impl ToString for ShadowError {
    fn to_string(&self) -> String {
        match self {
            ShadowError::String(e) => e.to_string(),
        }
    }
}

impl From<std::string::FromUtf8Error> for ShadowError {
    fn from(e: FromUtf8Error) -> Self {
        ShadowError::String(e.to_string())
    }
}

impl From<std::io::Error> for ShadowError {
    fn from(e: std::io::Error) -> Self {
        ShadowError::String(e.to_string())
    }
}

impl From<String> for ShadowError {
    fn from(e: String) -> Self {
        ShadowError::String(e)
    }
}

impl From<&str> for ShadowError {
    fn from(e: &str) -> Self {
        ShadowError::String(e.to_string())
    }
}

impl From<std::env::VarError> for ShadowError {
    fn from(e: std::env::VarError) -> Self {
        ShadowError::String(e.to_string())
    }
}

impl From<std::num::ParseIntError> for ShadowError {
    fn from(e: std::num::ParseIntError) -> Self {
        ShadowError::String(e.to_string())
    }
}