ParseResult

Type Alias ParseResult 

Source
pub type ParseResult = Result<Plan, ParseError>;
Expand description

Result type for the public Parser API

Aliased Type§

pub enum ParseResult {
    Ok(Plan),
    Err(ParseError),
}

Variants§

§1.0.0

Ok(Plan)

Contains the success value

§1.0.0

Err(ParseError)

Contains the error value