We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
to avoid orphan instances with ParseError, we should have predefined implementations for common error types people might use. Right now I see:
ParseError
(Input, ErrorKind)
()
The text was updated successfully, but these errors were encountered:
IIUC the first impl already exists and the second is simple, right?
Sorry, something went wrong.
the first exists, but you're free to do the second :) Any idea of other common error types someone could use?
I did the one for (), should I open a PR? And as for other common error types, I have no idea, sorry :(
sure, please do :)
No branches or pull requests
to avoid orphan instances with
ParseError
, we should have predefined implementations for common error types people might use. Right now I see:(Input, ErrorKind)
(which is the default error type)()
anything else?
The text was updated successfully, but these errors were encountered: