Contains all rows returned by the database and some more information
LegacyQueryResult::rows()
or a similar function called on a bad LegacyQueryResult.LegacyQueryResult.rows
to be Some
, but it was None
.LegacyQueryResult.rows
is Some
for queries that can return rows (e.g SELECT
).None
for queries that can’t return rows (e.g INSERT
).LegacyQueryResult::result_not_rows()
called on a bad LegacyQueryResult.LegacyQueryResult.rows
to be None
, but it was Some
.LegacyQueryResult.rows
is Some
for queries that can return rows (e.g SELECT
).None
for queries that can’t return rows (e.g INSERT
).rows.into_typed::<(...)>()
QueryResult
to LegacyQueryResult
conversion.Vec<result::Row>::into_typed<RowT>