(
number: int, group: Optional[str] = None, optional: bool = False
)
| 241 | |
| 242 | |
| 243 | def uint32_field( |
| 244 | number: int, group: Optional[str] = None, optional: bool = False |
| 245 | ) -> Any: |
| 246 | return dataclass_field(number, TYPE_UINT32, group=group, optional=optional) |
| 247 | |
| 248 | |
| 249 | def uint64_field( |
nothing calls this directly
no test coverage detected