(
self,
_name: &'static str,
_fields: &'static [&'static str],
visitor: V,
)
| 321 | } |
| 322 | |
| 323 | fn deserialize_struct<V>( |
| 324 | self, |
| 325 | _name: &'static str, |
| 326 | _fields: &'static [&'static str], |
| 327 | visitor: V, |
| 328 | ) -> Result<V::Value> |
| 329 | where |
| 330 | V: de::Visitor<'de>, |
| 331 | { |
| 332 | self.deserialize_map(visitor) |
| 333 | } |
| 334 | |
| 335 | fn deserialize_enum<V>( |
| 336 | self, |
nothing calls this directly
no test coverage detected