(&self, context: &mut WriteContext)
| 223 | |
| 224 | impl Serializer for ManualValue { |
| 225 | fn fory_write_data(&self, context: &mut WriteContext) -> Result<(), Error> { |
| 226 | write_data(&self.id, context)?; |
| 227 | write_data(&self.name, context) |
| 228 | } |
| 229 | |
| 230 | fn fory_read_data(context: &mut ReadContext) -> Result<Self, Error> { |
| 231 | Ok(Self { |
nothing calls this directly
no test coverage detected