(st *structType)
| 523 | } |
| 524 | |
| 525 | func constructStructDecodeFunc(st *structType) decodeFunc { |
| 526 | return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { |
| 527 | return d.decodeStruct(b, p, st) |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | func constructEmbeddedStructPointerCodec(t reflect.Type, unexported bool, offset uintptr, field codec) codec { |
| 532 | return codec{ |
no test coverage detected
searching dependent graphs…