(self, len: usize, v: V)
| 554 | |
| 555 | #[inline(always)] |
| 556 | fn tuple_variant<V>(self, len: usize, v: V) -> Result<V::Value> |
| 557 | where |
| 558 | V: Visitor<'de>, |
| 559 | { |
| 560 | self.deserialize_tuple(len, v) |
| 561 | } |
| 562 | |
| 563 | #[inline(always)] |
| 564 | fn struct_variant<V>(self, fields: &'static [&'static str], v: V) -> Result<V::Value> |
nothing calls this directly
no test coverage detected