paralegal_flow::ann::parse

Type Alias R

Source
type R<'a, T> = IResult<I<'a>, T, ErrorTree<I<'a>>>;

Aliased Type§

enum R<'a, T> {
    Ok((I<'a>, T)),
    Err(Err<GenericErrorTree<I<'a>, &'static str, &'static str, Box<dyn Error + Send + Sync>>>),
}

Variants§

§1.0.0

Ok((I<'a>, T))

Contains the success value

§1.0.0

Err(Err<GenericErrorTree<I<'a>, &'static str, &'static str, Box<dyn Error + Send + Sync>>>)

Contains the error value