icon-loader 0.4.1

Crate to load and cache themed icons in 100% safe rust.
Documentation
use std::error::Error as StdError;
use std::fmt;

/// Type alias for `std::result::Result<T, Error>`
pub type Result<T> = std::result::Result<T, Error>;

/// Error type returned by [`ThemeNameProvider`](crate::ThemeNameProvider).
#[derive(Debug)]
pub enum Error {
    /// Config file could not be found.
    ConfigNotFound,

    /// Error loading config file.
    LoadConfig {
        /// The source for the error.
        source: ini::Error,
    },

    /// Config does not contain valid theme name.
    ConfigMissingThemeName,

    /// Wrapper for errors returned by custom [`ThemeNameProvider`](crate::ThemeNameProvider).
    Custom {
        /// The source for the error.
        source: Box<dyn StdError + Send + Sync>,
    },
}

impl StdError for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Error::LoadConfig { source } => Some(source),
            Error::Custom { source } => Some(source.as_ref()),
            _ => None,
        }
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::ConfigNotFound => write!(f, "Config file could not be found."),
            Error::LoadConfig { source } => write!(f, "Error loading config file: {}", source),
            Error::ConfigMissingThemeName => {
                write!(f, "Config file is missing a valid theme name.")
            }
            Error::Custom { source } => {
                write!(f, "Error in custom theme name provider: {}", source)
            }
        }
    }
}

impl From<ini::Error> for Error {
    fn from(source: ini::Error) -> Self {
        Error::LoadConfig { source }
    }
}