Enum bmfont::ConfigParseError [] [src]

pub enum ConfigParseError {
    MissingSection(String),
    MissingComponent {
        section: String,
        component: String,
    },
    InvalidComponent {
        section: String,
        expected_component: String,
        actual_component: String,
    },
    InvalidComponentValue {
        section: String,
        component: String,
        value: String,
    },
}

Variants

Fields of MissingComponent

Fields of InvalidComponent

Fields of InvalidComponentValue

Trait Implementations

impl Debug for ConfigParseError
[src]

Formats the value using the given formatter.

impl Display for ConfigParseError
[src]

Formats the value using the given formatter. Read more