Type Alias parser_compose::Res

source ·
pub type Res<In, Out, E> = Result<(Out, In), Error<E>>;
Expand description

The return value of this crate’s parsers

Aliased Type§

enum Res<In, Out, E> {
    Ok((Out, In)),
    Err(Error<E>),
}

Variants§

§1.0.0

Ok((Out, In))

Contains the success value

§1.0.0

Err(Error<E>)

Contains the error value