forked from sonirico/go-hyperliquid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors_easyjson.go
More file actions
190 lines (178 loc) · 4.4 KB
/
errors_easyjson.go
File metadata and controls
190 lines (178 loc) · 4.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package hyperliquid
import (
json "encoding/json"
easyjson "github.com/mailru/easyjson"
jlexer "github.com/mailru/easyjson/jlexer"
jwriter "github.com/mailru/easyjson/jwriter"
)
// suppress unused package warning
var (
_ *json.RawMessage
_ *jlexer.Lexer
_ *jwriter.Writer
_ easyjson.Marshaler
)
func easyjsonD31a5a85DecodeGithubComSoniricoGoHyperliquid(in *jlexer.Lexer, out *ValidationError) {
isTopLevel := in.IsStart()
if in.IsNull() {
if isTopLevel {
in.Consumed()
}
in.Skip()
return
}
in.Delim('{')
for !in.IsDelim('}') {
key := in.UnsafeFieldName(false)
in.WantColon()
switch key {
case "Field":
if in.IsNull() {
in.Skip()
} else {
out.Field = string(in.String())
}
case "Message":
if in.IsNull() {
in.Skip()
} else {
out.Message = string(in.String())
}
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjsonD31a5a85EncodeGithubComSoniricoGoHyperliquid(out *jwriter.Writer, in ValidationError) {
out.RawByte('{')
first := true
_ = first
{
const prefix string = ",\"Field\":"
out.RawString(prefix[1:])
out.String(string(in.Field))
}
{
const prefix string = ",\"Message\":"
out.RawString(prefix)
out.String(string(in.Message))
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v ValidationError) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjsonD31a5a85EncodeGithubComSoniricoGoHyperliquid(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v ValidationError) MarshalEasyJSON(w *jwriter.Writer) {
easyjsonD31a5a85EncodeGithubComSoniricoGoHyperliquid(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *ValidationError) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjsonD31a5a85DecodeGithubComSoniricoGoHyperliquid(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *ValidationError) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjsonD31a5a85DecodeGithubComSoniricoGoHyperliquid(l, v)
}
func easyjsonD31a5a85DecodeGithubComSoniricoGoHyperliquid1(in *jlexer.Lexer, out *APIError) {
isTopLevel := in.IsStart()
if in.IsNull() {
if isTopLevel {
in.Consumed()
}
in.Skip()
return
}
in.Delim('{')
for !in.IsDelim('}') {
key := in.UnsafeFieldName(false)
in.WantColon()
switch key {
case "code":
if in.IsNull() {
in.Skip()
} else {
out.Code = int(in.Int())
}
case "msg":
if in.IsNull() {
in.Skip()
} else {
out.Message = string(in.String())
}
case "data":
if m, ok := out.Data.(easyjson.Unmarshaler); ok {
m.UnmarshalEasyJSON(in)
} else if m, ok := out.Data.(json.Unmarshaler); ok {
_ = m.UnmarshalJSON(in.Raw())
} else {
out.Data = in.Interface()
}
default:
in.SkipRecursive()
}
in.WantComma()
}
in.Delim('}')
if isTopLevel {
in.Consumed()
}
}
func easyjsonD31a5a85EncodeGithubComSoniricoGoHyperliquid1(out *jwriter.Writer, in APIError) {
out.RawByte('{')
first := true
_ = first
{
const prefix string = ",\"code\":"
out.RawString(prefix[1:])
out.Int(int(in.Code))
}
{
const prefix string = ",\"msg\":"
out.RawString(prefix)
out.String(string(in.Message))
}
if in.Data != nil {
const prefix string = ",\"data\":"
out.RawString(prefix)
if m, ok := in.Data.(easyjson.Marshaler); ok {
m.MarshalEasyJSON(out)
} else if m, ok := in.Data.(json.Marshaler); ok {
out.Raw(m.MarshalJSON())
} else {
out.Raw(json.Marshal(in.Data))
}
}
out.RawByte('}')
}
// MarshalJSON supports json.Marshaler interface
func (v APIError) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
easyjsonD31a5a85EncodeGithubComSoniricoGoHyperliquid1(&w, v)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (v APIError) MarshalEasyJSON(w *jwriter.Writer) {
easyjsonD31a5a85EncodeGithubComSoniricoGoHyperliquid1(w, v)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (v *APIError) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
easyjsonD31a5a85DecodeGithubComSoniricoGoHyperliquid1(&r, v)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *APIError) UnmarshalEasyJSON(l *jlexer.Lexer) {
easyjsonD31a5a85DecodeGithubComSoniricoGoHyperliquid1(l, v)
}