(self, _: &'static str, len: usize, v: V)
| 383 | |
| 384 | #[inline(always)] |
| 385 | fn deserialize_tuple_struct<V>(self, _: &'static str, len: usize, v: V) -> Result<V::Value> |
| 386 | where |
| 387 | V: Visitor<'de>, |
| 388 | { |
| 389 | self.deserialize_tuple(len, v) |
| 390 | } |
| 391 | |
| 392 | fn deserialize_map<V>(mut self, v: V) -> Result<V::Value> |
| 393 | where |
nothing calls this directly
no test coverage detected