(
number: int, group: Optional[str] = None, optional: bool = False
)
| 247 | |
| 248 | |
| 249 | def uint64_field( |
| 250 | number: int, group: Optional[str] = None, optional: bool = False |
| 251 | ) -> Any: |
| 252 | return dataclass_field(number, TYPE_UINT64, group=group, optional=optional) |
| 253 | |
| 254 | |
| 255 | def sint32_field( |
nothing calls this directly
no test coverage detected