You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error handling is omitted from tasks. Panic, Result and Option never get mentioned in idioms chapter nor ecosystem.
Proposal
Add task to 3_ecosystem where it would be required to refactor library code from manual mapping errors to usage of thiserror + write tests with usage of anyhow.
The problem I see is that module 3 is already quite heavy. Maybe we can add it to the end of module 2, as it's kinda also a part of the "idioms", and the error crates can be considered secondary to this topic?
Problem to solve
Error handling is omitted from tasks. Panic, Result and Option never get mentioned in idioms chapter nor ecosystem.
Proposal
Add task to
3_ecosystem
where it would be required to refactor library code from manual mapping errors to usage ofthiserror
+ write tests with usage ofanyhow
.Prior art
https://doc.rust-lang.org/book/ch09-01-unrecoverable-errors-with-panic.html#unrecoverable-errors-with-panic
Alternatives
Error handling mentioned in
5_zero2prod
.Links & references
https://doc.rust-lang.org/book/ch09-01-unrecoverable-errors-with-panic.html#unrecoverable-errors-with-panic
https://docs.rs/thiserror/latest/thiserror/
https://docs.rs/anyhow/latest/anyhow/
The text was updated successfully, but these errors were encountered: