-
Notifications
You must be signed in to change notification settings - Fork 51
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
Does RawWindowHandle
need to be Copy
?
#138
Comments
My vote would be that it doesn't need to be Copy. People should be paying close attention to code using these values and an occasional |
I like the idea of a window/display handle having the same semantics as an |
Yeah, don't see nothing wrong with it. |
This was referenced Aug 31, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like the
Copy
derive was added in #18, I guess because each handle happened to be compatible with it at the time.However there are some benefits to removing
Copy
, e.g. it makes it possible to include strongly typed web handles that are reference counted (notCopy
) #134 (comment)The text was updated successfully, but these errors were encountered: