We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78a9dbc + c162d51 commit cd6697bCopy full SHA for cd6697b
serde/src/de/ignored_any.rs
@@ -130,12 +130,28 @@ impl<'de> Visitor<'de> for IgnoredAny {
130
Ok(IgnoredAny)
131
}
132
133
+ serde_if_integer128! {
134
+ #[inline]
135
+ fn visit_i128<E>(self, x: i128) -> Result<Self::Value, E> {
136
+ let _ = x;
137
+ Ok(IgnoredAny)
138
+ }
139
140
+
141
#[inline]
142
fn visit_u64<E>(self, x: u64) -> Result<Self::Value, E> {
143
let _ = x;
144
145
146
147
148
149
+ fn visit_u128<E>(self, x: u128) -> Result<Self::Value, E> {
150
151
152
153
154
155
156
fn visit_f64<E>(self, x: f64) -> Result<Self::Value, E> {
157
0 commit comments