-
-
Notifications
You must be signed in to change notification settings - Fork 393
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
Use unions to represent unions #557
Comments
winapi 0.3 supports Rust 1.6 and therefore is unable to use the newer union language feature. winapi 0.4 will upgrade the minimum Rust version and take advantage of new language features such as that. |
Can't wait, but that's not happening any time soon, am I right? It will take awhile for even untagged unions to reach stable Rust. |
They are stable in 1.19 |
Hmm, I mistook it for unions with non-Copy field then which currently require |
Everything in |
@retep998 Is there a timeline for 0.4 as unions have been in for some time now, nearly 2 years... |
There are\were other blockers for 0.4 like procedural macros and |
As rust has
union
s since 1.19, shouldn't the API use them, instead of structs?The text was updated successfully, but these errors were encountered: