pub type Result<T, C, E> = Result<T, ParseError<C, E>>;
Expand description
An alias to a Result where:
Ok
isT
.Err
is aParseError
with contextC
and errorE
For a Result
that is parameterized only by the input type, see
input::Result
.
Aliased Type§
enum Result<T, C, E> {
Ok(T),
Err(ParseError<C, E>),
}