(&self, _context: &mut WriteContext)
| 29 | impl Serializer for () { |
| 30 | #[inline(always)] |
| 31 | fn fory_write_data(&self, _context: &mut WriteContext) -> Result<(), Error> { |
| 32 | // Unit type has no data to write |
| 33 | Ok(()) |
| 34 | } |
| 35 | |
| 36 | #[inline(always)] |
| 37 | fn fory_read_data(_context: &mut ReadContext) -> Result<Self, Error> { |
no test coverage detected