Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is my work-in-progress on converting
rubbl
's usage offailure
to usingthiserror
and/oranyhow
(anyhow
is good for "catch all" scenarios, whereasthiserror
is good for writing nice Rust errors that can be propagated). This is beneficial, becausefailure
has apparently been deprecated, and by usingthiserror
Error
types, one can use?
on functions that return result types.The current state of this branch does not compile, but I think I'd like your input before I continue; it's getting a little subjective. Hopefully it's easy to see what's going on -- it looks like the
failure
API is very similar tothiserror
/anyhow
, but I was still struggling on a couple of little things.You can let me know what you think, and I can have another crack at getting things fully converted.