Enum abscissa::FrameworkErrorKind[][src]

pub enum FrameworkErrorKind {
    ComponentError,
    ConfigError,
    IoError,
    ParseError,
}

Types of errors which occur internally within the framework

Variants

Errors relating to components

Error reading configuration file

I/O operation failed

Couldn't parse the given value

Trait Implementations

impl Clone for FrameworkErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FrameworkErrorKind
[src]

Formats the value using the given formatter. Read more

impl Eq for FrameworkErrorKind
[src]

impl PartialEq for FrameworkErrorKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations