-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detailed error tags for implicit io conversions
Summary: Implicit I/O and I/O category for serde_json are currently categorized very vaguely with just `IoSystem` and `Tier0` respectively. We already have code that categorizes `io::Error` more precisely so refactoring a bit. `io_error_kind_tag` is currently duplicated with the one in `fs_util.rs`, the next diff will clean that up Reviewed By: JakobDegen Differential Revision: D69144749 fbshipit-source-id: 371d9296717ba2856fa7b68e8b0cfa1280b85001
- Loading branch information
1 parent
dbf0c5b
commit d609e6e
Showing
5 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
mod array; | ||
mod convert; | ||
mod io; | ||
pub(crate) mod io; | ||
mod num; | ||
mod path; | ||
mod str; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters