Lines Matching defs:Optionals
20 type Optionals struct { struct
21 Sr string `json:"sr"`
22 So string `json:"so,omitempty"`
23 Sw string `json:"-"`
25 Ir int `json:"omitempty"` // actually named omitempty, not an option
26 Io int `json:"io,omitempty"`
28 Slr []string `json:"slr,random"`
29 Slo []string `json:"slo,omitempty"`
31 Mr map[string]any `json:"mr"`
32 Mo map[string]any `json:",omitempty"`
34 Fr float64 `json:"fr"`
35 Fo float64 `json:"fo,omitempty"`
37 Br bool `json:"br"`
38 Bo bool `json:"bo,omitempty"`
40 Ur uint `json:"ur"`
41 Uo uint `json:"uo,omitempty"`
43 Str struct{} `json:"str"`
44 Sto struct{} `json:"sto,omitempty"`