(self, _name: &'static str, visitor: V)
| 259 | } |
| 260 | |
| 261 | fn deserialize_unit_struct<V>(self, _name: &'static str, visitor: V) -> Result<V::Value> |
| 262 | where |
| 263 | V: de::Visitor<'de>, |
| 264 | { |
| 265 | self.deserialize_unit(visitor) |
| 266 | } |
| 267 | |
| 268 | fn deserialize_newtype_struct<V>(self, _name: &'static str, visitor: V) -> Result<V::Value> |
| 269 | where |
nothing calls this directly
no test coverage detected