(self, read_context)
| 168 | write_context.write_varint32(value.id) |
| 169 | |
| 170 | def read(self, read_context): |
| 171 | obj = MyExt() |
| 172 | obj.id = read_context.read_varint32() |
| 173 | return obj |
| 174 | |
| 175 | |
| 176 | @dataclass |
nothing calls this directly
no test coverage detected