[][src]Type Definition pear::result::Result

type Result<T, C, E> = Result<T, ParseError<C, E>>;

An alias to a Result where:

  • Ok is T.
  • Err is a ParseError with context C and error E

For a Result that is parameterized only by the input type, see input::Result.