You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #682, we add a Self: NoCell bound to AsBytes::write_to and similar methods. This is technically unnecessary since we should be able to read the bytes of &self in the same way that an &UnsafeCell can be read, but removing the bound will require some manual reimplementation and careful reasoning about soundness.
The text was updated successfully, but these errors were encountered:
In #682, we add a
Self: NoCell
bound toAsBytes::write_to
and similar methods. This is technically unnecessary since we should be able to read the bytes of&self
in the same way that an&UnsafeCell
can be read, but removing the bound will require some manual reimplementation and careful reasoning about soundness.The text was updated successfully, but these errors were encountered: