Type Alias sv_parser_parser::IResult

source ·
pub type IResult<T, U> = IResult<T, U, GreedyError<T, ErrorKind>>;

Aliased Type§

enum IResult<T, U> {
    Ok((T, U)),
    Err(Err<GreedyError<T, ErrorKind>>),
}

Variants§

§1.0.0

Ok((T, U))

Contains the success value

§1.0.0

Err(Err<GreedyError<T, ErrorKind>>)

Contains the error value