Hacker News new | ask | show | jobs
by conaclos 359 days ago
I accept, however this requires to create many types with corresponding implementations (`impl From`, `impl Display`, ...). This is a lot of boilerplate.
2 comments

In addition to the sibling comment mentioning thiserror, I also submit my crate SNAFU (linked in my ancestor comment). Reducing some of the boilerplate is a big reason I enjoy using it.
thiserror automates all of that: https://docs.rs/thiserror/latest/thiserror/ Highly recommended.
Sure, but it's an additional dependency. I would prefer it if some of this machinery were added to `core`.