Struct mg_settings::ParseResult [] [src]

pub struct ParseResult<T> {
    pub commands: Vec<Command<T>>,
    pub errors: Vec<Error>,
}

The commands and errors from parsing a config file.

Fields

The parsed commands.

The errors resulting from the parsing.

Methods

impl<T> ParseResult<T>
[src]

[src]

Create a new empty parser result.

Trait Implementations

Auto Trait Implementations

impl<T> Send for ParseResult<T> where
    T: Send

impl<T> Sync for ParseResult<T> where
    T: Sync