(
self,
_name: &'static str,
variant_index: u32,
_variant: &'static str,
len: usize,
)
| 461 | |
| 462 | #[inline(always)] |
| 463 | fn serialize_struct_variant( |
| 464 | self, |
| 465 | _name: &'static str, |
| 466 | variant_index: u32, |
| 467 | _variant: &'static str, |
| 468 | len: usize, |
| 469 | ) -> Result<Self::SerializeStructVariant> { |
| 470 | self.serialize_enum(variant_index)?.serialize_tuple(len) |
| 471 | } |
| 472 | |
| 473 | #[inline(always)] |
| 474 | fn is_human_readable(&self) -> bool { |
nothing calls this directly
no test coverage detected