paralegal_compiler::parsers

Type Alias Res

Source
pub type Res<T, U> = IResult<T, U, VerboseError<T>>;

Aliased Type§

enum Res<T, U> {
    Ok((T, U)),
    Err(Err<VerboseError<T>>),
}

Variants§

§1.0.0

Ok((T, U))

Contains the success value

§1.0.0

Err(Err<VerboseError<T>>)

Contains the error value