Rc<T> does not implement RefUnwindSafe #45924
Labels
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Arc<T>
implements bothUnwindSafe
andRefUnwindSafe
(though maybe it only getsRefUnwindSafe
because all of it's members happen to implementRefUnwindSafe
).Whereas
Rc<T>
only implementsUnwindSafe
. This seems like an oversight.https://play.rust-lang.org/?gist=0d89773218a347569615e1bea7b352f6&version=nightly
The text was updated successfully, but these errors were encountered: