Enum futhorc::config::Error[][src]

pub enum Error {
    MissingProjectFile(PathBuf),
    MissingProjectDirectory(PathBuf),
    DeserializeYaml(Error),
    OpenThemeFile {
        path: PathBuf,
        err: Error,
    },
    OpenProjectFile {
        path: PathBuf,
        err: Error,
    },
    Io(Error),
}

The error type for fallible configuration operations, namely parsing configuration files.

Variants

MissingProjectFile(PathBuf)

Returned when the project file can’t be found.

MissingProjectDirectory(PathBuf)

Returned when the project directory can’t be determined.

DeserializeYaml(Error)

Returned when the configuration files are malformed.

OpenThemeFile

Returned when there is a problem opening a theme file.

Fields of OpenThemeFile

path: PathBuferr: Error
OpenProjectFile

Returned when there is a problem opening the project file.

Fields of OpenProjectFile

path: PathBuferr: Error
Io(Error)

Returned for other I/O errors.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Implements std::fmt::Display for Error.

impl Error for Error[src]

fn source(&self) -> Option<&(dyn Error + 'static)>[src]

Implements std::error::Error for Error.

impl From<Error> for Error[src]

fn from(err: Error) -> Error[src]

Converts serde_yaml::Error into Error. This allows us to use the ? operator on fallible config parsing operations.

impl From<Error> for Error[src]

fn from(err: Error) -> Error[src]

Converts std::io::Error into Error. This allows us to use the ? operator on fallible config parsing operations.

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.