(self, v: char)
| 336 | } |
| 337 | |
| 338 | fn serialize_char(self, v: char) -> Result<Bound<'py, PyAny>> { |
| 339 | self.serialize_str(&v.to_string()) |
| 340 | } |
| 341 | |
| 342 | fn serialize_str(self, v: &str) -> Result<Bound<'py, PyAny>> { |
| 343 | Ok(PyString::new(self.py, v).into_any()) |
nothing calls this directly
no test coverage detected