github.com/jackc/pgx/v5.ScanArgError.Err (field)

6 uses

	github.com/jackc/pgx/v5 (current package)
		rows.go#L283: 			err = ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err}
		rows.go#L346: 	Err         error
		rows.go#L351: 		return fmt.Sprintf("can't scan into dest[%d]: %v", e.ColumnIndex, e.Err)
		rows.go#L354: 	return fmt.Sprintf("can't scan into dest[%d] (col: %s): %v", e.ColumnIndex, e.FieldName, e.Err)
		rows.go#L358: 	return e.Err
		rows.go#L382: 			return ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err}