(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value)
| 199 | } |
| 200 | |
| 201 | func (s compatiblePrimitiveListToArraySerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 202 | ctx.SetError(SerializationErrorf("compatible list-to-array field serializer is read-only")) |
| 203 | } |
| 204 | |
| 205 | //go:noinline |
| 206 | func (s compatiblePrimitiveListToArraySerializer) Read(ctx *ReadContext, refMode RefMode, readType bool, hasGenerics bool, value reflect.Value) { |
nothing calls this directly
no test coverage detected