Enum valid_toml::Warning [] [src]

pub enum Warning {
    Missing(String),
    Undefined(String),
}

Defines the possible warnings.

Variants

An optional value was not found. The default value will be used instead.

An value was read from the TOML file that does not contain a definition. Includes the name of the item.

Trait Implementations

impl Debug for Warning
[src]

Formats the value using the given formatter.

impl Display for Warning
[src]

Display a nice message for the warning.