(
self,
_name: &'static str,
_len: usize,
v: V,
)
| 215 | } |
| 216 | |
| 217 | fn deserialize_tuple_struct<V: Visitor<'de>>( |
| 218 | self, |
| 219 | _name: &'static str, |
| 220 | _len: usize, |
| 221 | v: V, |
| 222 | ) -> Result<V::Value> { |
| 223 | self.deserialize_seq(v) |
| 224 | } |
| 225 | |
| 226 | fn deserialize_map<V: Visitor<'de>>(self, v: V) -> Result<V::Value> { |
| 227 | v.visit_map(self) |
nothing calls this directly
no test coverage detected