(ctx *DecodeContext, target reflect.Value)
| 143 | type MapperFunc func(ctx *DecodeContext, target reflect.Value) error |
| 144 | |
| 145 | func (m MapperFunc) Decode(ctx *DecodeContext, target reflect.Value) error { //nolint: revive |
| 146 | return m(ctx, target) |
| 147 | } |
| 148 | |
| 149 | // A Registry contains a set of mappers and supporting lookup methods. |
| 150 | type Registry struct { |
nothing calls this directly
no outgoing calls
no test coverage detected