Type discrepancy between QueryRowsResult::column_specs
and PreparedStatement::get_result_set_col_specs
#1132
Labels
API-breaking
This might introduce incompatible API changes
API-stability
Part of the effort to stabilize the API
Milestone
The former returns
ColumnSpecs<'_>
, while the latter returns&[ColumnSpec<'_>]
.In a sense, returned values represent the same thing - thus, the returned types should be the same or easily convertible into one another (currently
ColumnSpecs
constructor ispub(crate)
).The text was updated successfully, but these errors were encountered: