(ctx *ReadContext, value reflect.Value)
| 42 | } |
| 43 | |
| 44 | func (s *idLimitExtSerializer) ReadData(ctx *ReadContext, value reflect.Value) { |
| 45 | value.Set(reflect.ValueOf(idLimitExt{ID: ctx.Buffer().ReadVarint32(ctx.Err())})) |
| 46 | } |
| 47 | |
| 48 | type idLimitUnion struct { |
| 49 | caseID uint32 |
nothing calls this directly
no test coverage detected