(self, _name: &'static str, len: usize)
| 456 | |
| 457 | #[inline(always)] |
| 458 | fn serialize_struct(self, _name: &'static str, len: usize) -> Result<Self::SerializeStruct> { |
| 459 | self.serialize_tuple(len) |
| 460 | } |
| 461 | |
| 462 | #[inline(always)] |
| 463 | fn serialize_struct_variant( |
nothing calls this directly
no test coverage detected