FfFuzzString struct
| 1435 | |
| 1436 | // FfFuzzString struct |
| 1437 | type FfFuzzString struct { |
| 1438 | A uint8 `json:",string"` |
| 1439 | B uint16 `json:",string"` |
| 1440 | C uint32 `json:",string"` |
| 1441 | D uint64 `json:",string"` |
| 1442 | |
| 1443 | E int8 `json:",string"` |
| 1444 | F int16 `json:",string"` |
| 1445 | G int32 `json:",string"` |
| 1446 | H int64 `json:",string"` |
| 1447 | |
| 1448 | I float32 `json:",string"` |
| 1449 | J float64 `json:",string"` |
| 1450 | |
| 1451 | M byte `json:",string"` |
| 1452 | N rune `json:",string"` |
| 1453 | |
| 1454 | O int `json:",string"` |
| 1455 | P uint `json:",string"` |
| 1456 | |
| 1457 | Q string `json:",string"` |
| 1458 | |
| 1459 | R bool `json:",string"` |
| 1460 | // https://github.com/golang/go/issues/9812 |
| 1461 | // S time.Time `json:",string"` |
| 1462 | |
| 1463 | Ap *uint8 `json:",string"` |
| 1464 | Bp *uint16 `json:",string"` |
| 1465 | Cp *uint32 `json:",string"` |
| 1466 | Dp *uint64 `json:",string"` |
| 1467 | |
| 1468 | Ep *int8 `json:",string"` |
| 1469 | Fp *int16 `json:",string"` |
| 1470 | Gp *int32 `json:",string"` |
| 1471 | Hp *int64 `json:",string"` |
| 1472 | |
| 1473 | IP *float32 `json:",string"` |
| 1474 | Jp *float64 `json:",string"` |
| 1475 | |
| 1476 | Mp *byte `json:",string"` |
| 1477 | Np *rune `json:",string"` |
| 1478 | |
| 1479 | Op *int `json:",string"` |
| 1480 | Pp *uint `json:",string"` |
| 1481 | Qp *string `json:",string"` |
| 1482 | Rp *bool `json:",string"` |
| 1483 | // https://github.com/golang/go/issues/9812 |
| 1484 | // Sp *time.Time `json:",string"` |
| 1485 | } |
| 1486 | |
| 1487 | // TTestMaps struct |
| 1488 | // ffjson: skip |
nothing calls this directly
no outgoing calls
no test coverage detected