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
Now that enums are namespaced, there's a fair amount of cleanup work to do in libstd.
In particular:
During the rollout of the feature, variants were re-exported at the top level to minimize churn. But the new idiom is to keep these items namespaced under the enum. In most cases, these re-exports should be removed.
Some variants included prefixes or suffixes in their names as a way to work around the lack of namespacing. These should be renamed.
A lot of this work will happen naturally during API stabilization, but it's also something that can tackled in parallel to help speed things up.