| 490 | type TryWrapScanPlanFunc func(target any) (plan WrappedScanPlanNextSetter, nextTarget any, ok bool) |
| 491 | |
| 492 | type pointerPointerScanPlan struct { |
| 493 | dstType reflect.Type |
| 494 | next ScanPlan |
| 495 | } |
| 496 | |
| 497 | func (plan *pointerPointerScanPlan) SetNext(next ScanPlan) { plan.next = next } |
| 498 |
nothing calls this directly
no outgoing calls
no test coverage detected