(self, visitor: V)
| 310 | } |
| 311 | |
| 312 | fn deserialize_map<V>(self, visitor: V) -> Result<V::Value> |
| 313 | where |
| 314 | V: de::Visitor<'de>, |
| 315 | { |
| 316 | if let Some(dc_access) = self.dataclass_access()? { |
| 317 | visitor.visit_map(dc_access) |
| 318 | } else { |
| 319 | visitor.visit_map(self.dict_access()?) |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | fn deserialize_struct<V>( |
| 324 | self, |
no test coverage detected