(self, fields: &'static [&'static str], v: V)
| 562 | |
| 563 | #[inline(always)] |
| 564 | fn struct_variant<V>(self, fields: &'static [&'static str], v: V) -> Result<V::Value> |
| 565 | where |
| 566 | V: Visitor<'de>, |
| 567 | { |
| 568 | self.deserialize_tuple(fields.len(), v) |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | #[cfg(test)] |
nothing calls this directly
no test coverage detected