(self, v: bool)
| 284 | type SerializeStructVariant = PythonStructVariantSerializer<'py, P>; |
| 285 | |
| 286 | fn serialize_bool(self, v: bool) -> Result<Bound<'py, PyAny>> { |
| 287 | self.serialise_default(v) |
| 288 | } |
| 289 | |
| 290 | fn serialize_i8(self, v: i8) -> Result<Bound<'py, PyAny>> { |
| 291 | self.serialise_default(v) |
nothing calls this directly
no test coverage detected