FfFuzzOmitEmpty struct
| 1294 | |
| 1295 | // FfFuzzOmitEmpty struct |
| 1296 | type FfFuzzOmitEmpty struct { |
| 1297 | A uint8 `json:",omitempty"` |
| 1298 | B uint16 `json:",omitempty"` |
| 1299 | C uint32 `json:",omitempty"` |
| 1300 | D uint64 `json:",omitempty"` |
| 1301 | |
| 1302 | E int8 `json:",omitempty"` |
| 1303 | F int16 `json:",omitempty"` |
| 1304 | G int32 `json:",omitempty"` |
| 1305 | H int64 `json:",omitempty"` |
| 1306 | |
| 1307 | I float32 `json:",omitempty"` |
| 1308 | J float64 `json:",omitempty"` |
| 1309 | |
| 1310 | M byte `json:",omitempty"` |
| 1311 | N rune `json:",omitempty"` |
| 1312 | |
| 1313 | O int `json:",omitempty"` |
| 1314 | P uint `json:",omitempty"` |
| 1315 | Q string `json:",omitempty"` |
| 1316 | R bool `json:",omitempty"` |
| 1317 | S time.Time `json:",omitempty"` |
| 1318 | |
| 1319 | Ap *uint8 `json:",omitempty"` |
| 1320 | Bp *uint16 `json:",omitempty"` |
| 1321 | Cp *uint32 `json:",omitempty"` |
| 1322 | Dp *uint64 `json:",omitempty"` |
| 1323 | |
| 1324 | Ep *int8 `json:",omitempty"` |
| 1325 | Fp *int16 `json:",omitempty"` |
| 1326 | Gp *int32 `json:",omitempty"` |
| 1327 | Hp *int64 `json:",omitempty"` |
| 1328 | |
| 1329 | IP *float32 `json:",omitempty"` |
| 1330 | Jp *float64 `json:",omitempty"` |
| 1331 | |
| 1332 | Mp *byte `json:",omitempty"` |
| 1333 | Np *rune `json:",omitempty"` |
| 1334 | |
| 1335 | Op *int `json:",omitempty"` |
| 1336 | Pp *uint `json:",omitempty"` |
| 1337 | Qp *string `json:",omitempty"` |
| 1338 | Rp *bool `json:",omitempty"` |
| 1339 | Sp *time.Time `json:",omitempty"` |
| 1340 | |
| 1341 | Aa []uint8 `json:",omitempty"` |
| 1342 | Ba []uint16 `json:",omitempty"` |
| 1343 | Ca []uint32 `json:",omitempty"` |
| 1344 | Da []uint64 `json:",omitempty"` |
| 1345 | |
| 1346 | Ea []int8 `json:",omitempty"` |
| 1347 | Fa []int16 `json:",omitempty"` |
| 1348 | Ga []int32 `json:",omitempty"` |
| 1349 | Ha []int64 `json:",omitempty"` |
| 1350 | |
| 1351 | Ia []float32 `json:",omitempty"` |
| 1352 | Ja []float64 `json:",omitempty"` |
| 1353 |
nothing calls this directly
no outgoing calls
no test coverage detected