Enum toml_loader::LoadError []

pub enum LoadError {
    Io(Error),
    Parse(Vec<ParserError>),
}

Wraps all errors this library can produce

Variants

IO Error

TOML parsing error

Trait Implementations

impl Debug for LoadError
[src]

Formats the value using the given formatter.

impl Display for LoadError

Formats the value using the given formatter. Read more

impl Error for LoadError

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for LoadError

Performs the conversion.

impl From<Vec<ParserError>> for LoadError

Performs the conversion.