(value: &T, context: &mut WriteContext)
| 637 | |
| 638 | #[inline(always)] |
| 639 | fn write_data(value: &T, context: &mut WriteContext) -> Result<(), Error> { |
| 640 | T::fory_write_data_generic(value, context, false) |
| 641 | } |
| 642 | |
| 643 | #[inline(always)] |
| 644 | fn read_data(context: &mut ReadContext) -> Result<T, Error> { |
nothing calls this directly
no test coverage detected