(ctx *ReadContext, value reflect.Value)
| 250 | } |
| 251 | |
| 252 | func (s encodedInt64Serializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 253 | err := ctx.Err() |
| 254 | switch s.typeID { |
| 255 | case INT64: |
| 256 | value.SetInt(ctx.buffer.ReadInt64(err)) |
| 257 | case TAGGED_INT64: |
| 258 | value.SetInt(ctx.buffer.ReadTaggedInt64(err)) |
| 259 | default: |
| 260 | value.SetInt(ctx.buffer.ReadVarint64(err)) |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | func (s encodedInt64Serializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
| 265 | _ = hasGenerics |
no test coverage detected