| 677 | } |
| 678 | |
| 679 | type namedStructRowScanner struct { |
| 680 | ptrToStruct any |
| 681 | lax bool |
| 682 | } |
| 683 | |
| 684 | func (rs *namedStructRowScanner) ScanRow(rows CollectableRow) error { |
| 685 | typ := reflect.TypeOf(rs.ptrToStruct).Elem() |
nothing calls this directly
no outgoing calls
no test coverage detected