We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea830e7 commit 885ff46Copy full SHA for 885ff46
acdc-parser/src/error.rs
@@ -67,6 +67,10 @@ pub enum Error {
67
#[error("Unable to retrieve HTTP response: {0}")]
68
#[serde(skip_deserializing)]
69
HttpRequest(#[from] reqwest::Error),
70
+
71
+ #[error("Could not convert from int: {0}")]
72
+ #[serde(skip_deserializing)]
73
+ TryFromIntError(#[from] std::num::TryFromIntError),
74
}
75
76
#[derive(Debug, PartialEq, Deserialize)]
0 commit comments