PResult

Type Alias PResult 

Source
pub type PResult<T, E> = Result<(usize, T), E>;
Expand description

The parse result of a combinator.

Aliased Type§

pub enum PResult<T, E> {
    Ok((usize, T)),
    Err(E),
}

Variants§

§1.0.0

Ok((usize, T))

Contains the success value

§1.0.0

Err(E)

Contains the error value