Enum fall::LoadError[][src]

pub enum LoadError {
    Io(Error),
    Parse(ParseError<usize, (usize, String), &'static str>),
}

An error loading a file.

Variants

An error reading the file.

An error parsing the file.

Trait Implementations

impl Debug for LoadError
[src]

Formats the value using the given formatter. Read more

impl Display for LoadError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for LoadError

impl Sync for LoadError