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
Once #22319 lands, rust-lang/rfcs#458 will be implemented and so Send will no longer imply 'static. Most users of Send in the standard library were changed to Send + 'static to conservatively ensure safety, but many can likely lose the 'static bound.
Once #22319 lands, rust-lang/rfcs#458 will be implemented and so
Send
will no longer imply'static
. Most users ofSend
in the standard library were changed toSend + 'static
to conservatively ensure safety, but many can likely lose the'static
bound.In #22319 (specifically, in comments on huonw@a85afe6), @nikomatsakis pointed out these as likely candidates:
std::sync::mpsc
Remove'static
bound from sync::mpsc, Mutex and RwLock. #22574std::sync::future
std::sync::mutex
Remove'static
bound from sync::mpsc, Mutex and RwLock. #22574term
The text was updated successfully, but these errors were encountered: