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
Introduce Mutable<T> to implement a dynamic mutable slot, with dynamic borrow check, in once place. Obsolete Cell<T> and RcMut<T> (and what about @mut T? See #7140)
For Mutable<T> use an implementation with wrapped borrowed pointers to allow for both closured-bracketed and "roaming" borrowed pointers.