Res

Type Alias Res 

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

Aliased Type§

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

Variants§

§1.0.0

Ok((T, U))

Contains the success value

§1.0.0

Err(Err<Error<T>>)

Contains the error value