MCPcopy Create free account
hub / github.com/pquerna/ffjson / Data

Struct Data

tests/fuzz/target.go:8–94  ·  view source on GitHub ↗

Data provides an unmarshaling target

Source from the content-addressed store, hash-verified

6
7// Data provides an unmarshaling target
8type Data struct {
9 A uint8
10 B uint16
11 C uint32
12 D uint64
13
14 E int8
15 F int16
16 G int32
17 H int64
18
19 I float32
20 J float64
21
22 M byte
23 N rune
24
25 O int
26 P uint
27 Q string
28 R bool
29 S time.Time
30
31 Ap *uint8
32 Bp *uint16
33 Cp *uint32
34 Dp *uint64
35
36 Ep *int8
37 Fp *int16
38 Gp *int32
39 Hp *int64
40
41 IP *float32
42 Jp *float64
43
44 Mp *byte
45 Np *rune
46
47 Op *int
48 Pp *uint
49 Qp *string
50 Rp *bool
51 Sp *time.Time
52
53 Aa []uint8
54 Ba []uint16
55 Ca []uint32
56 Da []uint64
57
58 Ea []int8
59 Fa []int16
60 Ga []int32
61 Ha []int64
62
63 Ia []float32
64 Ja []float64
65

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected