(
number: int, group: Optional[str] = None, optional: bool = False
)
| 283 | |
| 284 | |
| 285 | def fixed64_field( |
| 286 | number: int, group: Optional[str] = None, optional: bool = False |
| 287 | ) -> Any: |
| 288 | return dataclass_field(number, TYPE_FIXED64, group=group, optional=optional) |
| 289 | |
| 290 | |
| 291 | def sfixed32_field( |
nothing calls this directly
no test coverage detected