mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-04 00:05:27 +00:00

Given a generic type like `A<B>` before `sqlx` would produce `A<B>::from_row(row)` which is invalid syntax. Now it produces `<A<B> as ::sqlx::FromRow<'a, R>>`. This also fixes a bug for non-generic types where an inherent method might have been called instead of the `::sqlx::FromRow::from_row` method because UFCS wasn't used.