(
number: int, group: Optional[str] = None, optional: bool = False
)
| 235 | |
| 236 | |
| 237 | def int64_field( |
| 238 | number: int, group: Optional[str] = None, optional: bool = False |
| 239 | ) -> Any: |
| 240 | return dataclass_field(number, TYPE_INT64, group=group, optional=optional) |
| 241 | |
| 242 | |
| 243 | def uint32_field( |
nothing calls this directly
no test coverage detected