You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently if one wants to use a type in an array they have to implement the trait manually:
Is your feature request related to a problem? Please describe.
Currently if one wants to use a type in an array they have to implement the trait manually:
This is unpredictable and can get repetitive with many types
Describe the solution you'd like
Deriving
sqlx::Type
implicitly implements this trait following the_{name}
formatDescribe alternatives you've considered
derive(sqlx::Type, sqlx::TypeArray)
#[derive(sqlx::Type)]
then#[sqlx(array)]
#[sqlx(array_name = "__foo")]
or#[sqlx(array = false)]
The text was updated successfully, but these errors were encountered: