pub type Result<T, C, E> = Result<T, ParseError<C, E>>;Expand description
An alias to a Result where:
OkisT.Erris aParseErrorwith contextCand 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>),
}