(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
)
| 367 | } |
| 368 | |
| 369 | fn serialize_unit_variant( |
| 370 | self, |
| 371 | _name: &'static str, |
| 372 | _variant_index: u32, |
| 373 | variant: &'static str, |
| 374 | ) -> Result<Bound<'py, PyAny>> { |
| 375 | self.serialize_str(variant) |
| 376 | } |
| 377 | |
| 378 | fn serialize_newtype_struct<T>( |
| 379 | self, |
nothing calls this directly
no test coverage detected