(
self,
_name: &'static str,
len: usize,
)
| 421 | |
| 422 | #[inline(always)] |
| 423 | fn serialize_tuple_struct( |
| 424 | self, |
| 425 | _name: &'static str, |
| 426 | len: usize, |
| 427 | ) -> Result<Self::SerializeTupleStruct> { |
| 428 | self.serialize_tuple(len) |
| 429 | } |
| 430 | |
| 431 | #[inline(always)] |
| 432 | fn serialize_tuple_variant( |
nothing calls this directly
no test coverage detected