-
Notifications
You must be signed in to change notification settings - Fork 13k
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
I/O objects should be Freeze #12139
Comments
Hi! I would like to give a shot, could you please give me some guide? |
Each I/O object inside of |
Taking a peek at this myself. Would I begin in the |
In theory that should also work, yes. |
Freeze was removed in #13076, and I/O objects are definitely not |
All of I/O uses inherited mutability, so the I/O objects themselves should be
Freeze
. The reason that they aren't right now is because the trait objects underneath all of them areSend
, notSend + Freeze
.The text was updated successfully, but these errors were encountered: