Enum mg_settings::errors::Error [] [src]

pub enum Error {
    Msg(String),
    Parse(ParseError),
    Setting(SettingError),
}

Parser or setting error.

Variants

Other errors like input/output error.

Parse error.

Error when getting/setting settings.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Error
[src]

[src]

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

[src]

This method tests for !=.

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Into<Error> for &'a str
[src]

[src]

Performs the conversion.

impl Into<Error> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error