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
The owned Id struct should implement DerefMut so that its object can be mutated. However, when DerefMut is implemented, dereferencing to &mut is always chosen over &, which breaks many uses of Id, so this should wait for rust-lang/rust#12825.
The text was updated successfully, but these errors were encountered:
The owned
Id
struct should implementDerefMut
so that its object can be mutated. However, whenDerefMut
is implemented, dereferencing to&mut
is always chosen over&
, which breaks many uses ofId
, so this should wait for rust-lang/rust#12825.The text was updated successfully, but these errors were encountered: