MPQResult

Type Alias MPQResult 

Source
pub type MPQResult<I, O> = Result<(I, O), MPQParserError>;
Expand description

Holds the result of parsing progress and the possibly failures

Aliased Type§

pub enum MPQResult<I, O> {
    Ok((I, O)),
    Err(MPQParserError),
}

Variants§

§1.0.0

Ok((I, O))

Contains the success value

§1.0.0

Err(MPQParserError)

Contains the error value