// UnmarshalEasyJSON does JSON unmarshaling using easyjson interface. func (v *Optional) UnmarshalEasyJSON(l *jlexer.Lexer) { if l.IsNull() { l.Skip() *v = Optional{} } else { v.V = l.Optional() v.Defined = true } }
// UnmarshalEasyJSON does JSON unmarshaling using easyjson interface. func (v *Int32) UnmarshalEasyJSON(l *jlexer.Lexer) { if l.IsNull() { l.Skip() *v = Int32{} } else { v.V = l.Int32() v.Defined = true } }
// UnmarshalEasyJSON does JSON unmarshaling using easyjson interface. func (v *Uint64) UnmarshalEasyJSON(l *jlexer.Lexer) { if l.IsNull() { l.Skip() *v = Uint64{} } else { v.V = l.Uint64() v.Defined = true } }