// 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 } }