(self, visitor: V)
| 207 | deserialize_type!(deserialize_f64 => visit_f64); |
| 208 | |
| 209 | fn deserialize_str<V>(self, visitor: V) -> Result<V::Value> |
| 210 | where |
| 211 | V: de::Visitor<'de>, |
| 212 | { |
| 213 | let s = self.input.cast::<PyString>()?; |
| 214 | visitor.visit_str(&s.to_cow()?) |
| 215 | } |
| 216 | |
| 217 | fn deserialize_string<V>(self, visitor: V) -> Result<V::Value> |
| 218 | where |
no outgoing calls
no test coverage detected