(self, v: T)
| 265 | /// The default implementation for serialisation functions. |
| 266 | #[inline] |
| 267 | fn serialise_default<T>(self, v: T) -> Result<Bound<'py, PyAny>> |
| 268 | where |
| 269 | T: IntoPyObject<'py>, |
| 270 | { |
| 271 | v.into_bound_py_any(self.py).map_err(Into::into) |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | impl<'py, P: PythonizeTypes> ser::Serializer for Pythonizer<'py, P> { |
no outgoing calls
no test coverage detected