Enum amethyst_config::ConfigError [] [src]

pub enum ConfigError {
    YamlScan(ScanError),
    YamlParse(ConfigMeta),
    NonConfig,
    FileError(PathBufError),
    MultipleExternalFiles(PathBufVec<PathBuf>),
    MissingExternalFile(ConfigMeta),
}

Configuration error

Variants

YamlScan(ScanError)YamlParse(ConfigMeta)NonConfigFileError(PathBufError)MultipleExternalFiles(PathBufVec<PathBuf>)MissingExternalFile(ConfigMeta)

Methods

impl ConfigError
[src]

fn to_string(&self) -> String

Trait Implementations

impl Debug for ConfigError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for ConfigError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.