(self, write_context, value)
| 180 | """Serializer for UINT8 type - unsigned 8-bit integer.""" |
| 181 | |
| 182 | def write(self, write_context, value): |
| 183 | write_context.write_uint8(value) |
| 184 | |
| 185 | def read(self, read_context): |
| 186 | return read_context.read_uint8() |
nothing calls this directly
no test coverage detected