(ctx *WriteContext, value reflect.Value)
| 819 | type stringStringMapSerializer struct{} |
| 820 | |
| 821 | func (s stringStringMapSerializer) WriteData(ctx *WriteContext, value reflect.Value) { |
| 822 | writeMapStringString(ctx.buffer, value.Interface().(map[string]string), false) |
| 823 | } |
| 824 | |
| 825 | func (s stringStringMapSerializer) Write(ctx *WriteContext, refMode RefMode, writeType bool, hasGenerics bool, value reflect.Value) { |
| 826 | done := writeMapRefAndType(ctx, refMode, writeType, value) |
nothing calls this directly
no test coverage detected