Enum broot::errors::ConfError[][src]

pub enum ConfError {
    Io {
        source: Error,
    },
    UnknownFileExtension {
        path: String,
    },
    Toml {
        source: Error,
    },
    Hjson {
        source: Error,
    },
    Invalid,
    MissingField {
        txt: String,
    },
    InvalidVerbInvocation {
        invocation: String,
    },
    InvalidVerbConf {
        details: String,
    },
    UnknownInternal {
        verb: String,
    },
    InvalidSearchMode {
        details: String,
    },
    InvalidKey {
        raw: String,
    },
    ReservedKey {
        key: String,
    },
    UnexpectedInternalArg {
        invocation: String,
    },
    InvalidCols {
        details: String,
    },
    InvalidSkin {
        source: InvalidSkinError,
    },
}

Variants

Io

Fields of Io

source: Error
UnknownFileExtension

Fields of UnknownFileExtension

path: String
Toml

Fields of Toml

source: Error
Hjson

Fields of Hjson

source: Error
Invalid
MissingField

Fields of MissingField

txt: String
InvalidVerbInvocation

Fields of InvalidVerbInvocation

invocation: String
InvalidVerbConf

Fields of InvalidVerbConf

details: String
UnknownInternal

Fields of UnknownInternal

verb: String
InvalidSearchMode

Fields of InvalidSearchMode

details: String
InvalidKey

Fields of InvalidKey

raw: String
ReservedKey

Fields of ReservedKey

key: String
UnexpectedInternalArg

Fields of UnexpectedInternalArg

invocation: String
InvalidCols

Fields of InvalidCols

details: String
InvalidSkin

Fields of InvalidSkin

source: InvalidSkinError

Trait Implementations

impl Debug for ConfError[src]

impl Display for ConfError[src]

impl Error for ConfError[src]

impl From<ConfError> for ProgramError[src]

impl From<Error> for ConfError[src]

impl From<Error> for ConfError[src]

impl From<Error> for ConfError[src]

impl From<InvalidSkinError> for ConfError[src]

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,