(value: &T, context: &mut WriteContext)
| 617 | |
| 618 | #[inline(always)] |
| 619 | fn write_field(value: &T, context: &mut WriteContext) -> Result<(), Error> { |
| 620 | T::fory_write( |
| 621 | value, |
| 622 | context, |
| 623 | serializer_ref_mode::<T, NULLABLE, TRACK_REF>(), |
| 624 | field_write_type_info::<T>(context), |
| 625 | false, |
| 626 | ) |
| 627 | } |
| 628 | |
| 629 | #[inline(always)] |
| 630 | fn read_field(context: &mut ReadContext) -> Result<T, Error> { |
nothing calls this directly
no test coverage detected