(
self,
_: &'static str,
fields: &'static [&'static str],
v: V,
)
| 466 | |
| 467 | #[inline(always)] |
| 468 | fn deserialize_struct<V>( |
| 469 | self, |
| 470 | _: &'static str, |
| 471 | fields: &'static [&'static str], |
| 472 | v: V, |
| 473 | ) -> Result<V::Value> |
| 474 | where |
| 475 | V: Visitor<'de>, |
| 476 | { |
| 477 | self.deserialize_tuple(fields.len(), v) |
| 478 | } |
| 479 | |
| 480 | #[inline(always)] |
| 481 | fn deserialize_enum<V>( |
nothing calls this directly
no test coverage detected