-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Type
for [u8; N]
#1180
Milestone
Comments
This will be part of 0.6 |
Is there an ETA for this 0.6 release? |
v0.6.0 has been released but this feature wasn't part of it. |
Yeah, this is a backwards compatible change however, so if anyone wants to put in a PR for it we'd gladly have it. |
Closed by #1953 |
My PR implements this for Postgres but not other database systems. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was trying to
derive(Type)
for a newtype containing[u8; 16]
and it didn't work. It seems there is currently no impl for fixed-length arrays ofu8
. It would be useful to add them, especially now with const generics MVP landed one no longer has to write a separate impl for every array size.The text was updated successfully, but these errors were encountered: