(ctx *WriteContext, value reflect.Value)
| 260 | var globalUint64Serializer = uint64Serializer{} |
| 261 | |
| 262 | func (s uint64Serializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 263 | ctx.buffer.WriteVarUint64(value.Uint()) |
| 264 | } |
| 265 | |
| 266 | func (s uint64Serializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 267 | _ = hasGenerics |