(self, _fields: &'static [&'static str], visitor: V)
| 618 | } |
| 619 | |
| 620 | fn struct_variant<V>(self, _fields: &'static [&'static str], visitor: V) -> Result<V::Value> |
| 621 | where |
| 622 | V: de::Visitor<'de>, |
| 623 | { |
| 624 | visitor.visit_map(self.de.dict_access()?) |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | // See serde_json |
nothing calls this directly
no test coverage detected