(
value: &T,
context: &mut WriteContext,
ref_mode: RefMode,
write_type_info: bool,
has_generics: bool,
)
| 681 | |
| 682 | #[inline(always)] |
| 683 | fn write_with_mode( |
| 684 | value: &T, |
| 685 | context: &mut WriteContext, |
| 686 | ref_mode: RefMode, |
| 687 | write_type_info: bool, |
| 688 | has_generics: bool, |
| 689 | ) -> Result<(), Error> { |
| 690 | T::fory_write(value, context, ref_mode, write_type_info, has_generics) |
| 691 | } |
| 692 | |
| 693 | #[inline(always)] |
| 694 | fn read_with_mode( |
nothing calls this directly
no test coverage detected