(t reflect.Type)
| 796 | } |
| 797 | |
| 798 | func constructUnsupportedTypeEncodeFunc(t reflect.Type) encodeFunc { |
| 799 | return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 800 | return e.encodeUnsupportedTypeError(b, p, t) |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | func constructUnsupportedTypeDecodeFunc(t reflect.Type) decodeFunc { |
| 805 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
no test coverage detected
searching dependent graphs…