mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Add brief comparison with anyhow
This commit is contained in:
parent
d11d4c6e63
commit
7fde96548c
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue