(ctx *WriteContext, value reflect.Value)
| 2819 | } |
| 2820 | |
| 2821 | func (s *skipStructSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 2822 | ctx.SetError(SerializationError("skipStructSerializer does not support WriteData - unknown struct type")) |
| 2823 | } |
| 2824 | |
| 2825 | func (s *skipStructSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 2826 | ctx.SetError(SerializationError("skipStructSerializer does not support Write - unknown struct type")) |
nothing calls this directly
no test coverage detected