(context: &mut ReadContext)
| 36 | |
| 37 | #[inline(always)] |
| 38 | fn fory_read_data(context: &mut ReadContext) -> Result<Self, Error> { |
| 39 | let seconds = context.reader.read_i64()?; |
| 40 | let nanos = context.reader.read_u32()?; |
| 41 | Timestamp::new(seconds, nanos) |
| 42 | } |
| 43 | #[inline] |
| 44 | fn fory_read_data_as_send_sync_any( |
| 45 | context: &mut ReadContext, |
nothing calls this directly
no test coverage detected