Struct valid_toml::Issues [] [src]

pub struct Issues {
    pub errors: LinkedList<Error>,
    pub warnings: LinkedList<Warning>,
}

This object contains all the problems that occured while loading a TOML file.

Fields

The list of errors that blocked the file from being loaded.

The list of items that were missing from the file but that have default values.

Methods

impl Issues
[src]

Create a new instance of the object.

Helper method to check if there are any error issues.

Trait Implementations

impl Debug for Issues
[src]

Formats the value using the given formatter.