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
I'm going throught the API code to remove blocking right now, and there are a ton of cases of .is_err(), that it makes sense to convert to .map_err.
blocking
.is_err()
.map_err
Also check is_ok()
is_ok()
The text was updated successfully, but these errors were encountered:
Rework error handling (fixes #1714)
a94bc33
06a975a
166ec19
No branches or pull requests
I'm going throught the API code to remove
blocking
right now, and there are a ton of cases of.is_err()
, that it makes sense to convert to.map_err
.Also check
is_ok()
The text was updated successfully, but these errors were encountered: