Add brief comparison with anyhow

This commit is contained in:
David Tolnay 2019-10-28 23:59:34 -07:00
parent d11d4c6e63
commit 7fde96548c
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -134,6 +134,18 @@ pub enum DataStoreError {
<br>
## Comparison to anyhow
Use thiserror if you care about designing your own dedicated error type(s) so
that the caller receives exactly the information that you choose in the event of
failure. This most often applies to library-like code. Use [Anyhow] if you don't
care what error type your functions return, you just want it to be easy. This is
common in application-like code.
[Anyhow]: https://github.com/dtolnay/anyhow
<br>
#### License
<sup>