DecodeHookFuncKind is a DecodeHookFunc which knows only the Kinds of the source and target types.
func(reflect.Kind, reflect.Kind, interface{}) (interface{}, error)
| 191 | // DecodeHookFuncKind is a DecodeHookFunc which knows only the Kinds of the |
| 192 | // source and target types. |
| 193 | type DecodeHookFuncKind func(reflect.Kind, reflect.Kind, interface{}) (interface{}, error) |
| 194 | |
| 195 | // DecodeHookFuncValue is a DecodeHookFunc which has complete access to both the source and target |
| 196 | // values. |
nothing calls this directly
no outgoing calls
no test coverage detected