Type Alias partiql_parser::ParserResult

source ·
pub type ParserResult<'input> = Result<Parsed<'input>, ParserError<'input>>;
Expand description

General Result type for the PartiQL Parser.

Aliased Type§

enum ParserResult<'input> {
    Ok(Parsed<'input>),
    Err(ParserError<'input>),
}

Variants§

§1.0.0

Ok(Parsed<'input>)

Contains the success value

§1.0.0

Err(ParserError<'input>)

Contains the error value