Type Alias ixdtf::ParserResult

source ·
pub type ParserResult<T> = Result<T, ParseError>;
Expand description

The ixdtf crate’s Result type.

Aliased Type§

enum ParserResult<T> {
    Ok(T),
    Err(ParseError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ParseError)

Contains the error value