-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 Deref for Box #18624
Comments
(Tagged E-easy in the hope that it's as simple as adding the impls @kennytm gives in the issue. There is the chance that there is some compiler peculiarities that make this not-easy.) |
@nikomatsakis has kindly volunteered to mentor; catch him here or as |
Can I have a go at this? Looks easy enough... @nikomatsakis |
@vojtechkral it's already been done/attempted in #19023. 😄 |
Oh well, never mind, I must've overlooked the cross-ref... |
@darnuria unfortunately it wasn't merged. |
As the previous pull request (rust-lang#19023) was closed due to inactivity, I steal the chance and open this pull request. 😊 Fixes rust-lang#18624.
As titled. Currently Box does not implement Deref:
But Box should be able to implement Deref.
The text was updated successfully, but these errors were encountered: