pub type Res<T, U> = IResult<T, U, VerboseError<T>>;
Aliased Type§
enum Res<T, U> {
Ok((T, U)),
Err(Err<VerboseError<T>>),
}
pub type Res<T, U> = IResult<T, U, VerboseError<T>>;
enum Res<T, U> {
Ok((T, U)),
Err(Err<VerboseError<T>>),
}