-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Add Invariant<T> marker type #31218
Comments
This seems like an RFCs thing. I'm kinda ambivalent on this. We used to have these and that was confusing... but sometimes you do know exactly the semantic you want and there's no "natural" phantom for it. |
It's more confusing to keep track of all incidental collaterals of the phantomdata formulations. |
I'm sort of ambivalent as well. On the one hand, Anyway I agree this deserves an RFC. |
RFC makes sense. |
Note also this important comment #31200 (comment) in response to the claim that "(3) has bug #31200" |
From a discussion about different ways to write an Invariant type parameter marker; since we need to express it via
PhantomData
.candidates were basically (although this was only used for
&'a ()
cases)PhantomData<*mut T>
PhantomData<Cell<T>>
PhantomData<fn(T) -> T>
Which all have different drawbacks and incidental other implications.
The source of the confusion was (3) case not passing my simple test for invariance.
Because of the drawbacks, it seems it would be useful to have a real invariance marker in rust's libstd.
(1) and (2) make the type
!Sync
. (2) has owns-T
implications (3) has bug #31200. All of (1), (2), (3) don't respond likeInvarant<T>
should to custom new OIBITS.cc @reem if you are interested.
The text was updated successfully, but these errors were encountered: