| 49 | type UndecodedBytes []byte |
| 50 | |
| 51 | type scanPlanAnyToUndecodedBytes struct{} |
| 52 | |
| 53 | func (scanPlanAnyToUndecodedBytes) Scan(src []byte, dst any) error { |
| 54 | dstBuf := dst.(*UndecodedBytes) |
nothing calls this directly
no outgoing calls
no test coverage detected