-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking Issue for feature(string_drain_as_str) - string::Drain::as_str() #76905
Comments
Seems there's no blocker, could I ask you to kick off FCP to stabilize it? |
cc @rust-lang/libs-api If it's reasonable, it'd be great if someone starts FCP :) |
Do we have any confirmation of usage in the ecosystem? I don't see any problem with the method as designed, but can we confirm that it's being used? |
Oh sorry, I don't have the real world use case, unfortunately. I just thought this is straightforward and makes the conversion around |
@rfcbot merge |
Team member @m-ou-se has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. The RFC will be merged soon. |
Tracking Issue for
string_drain_as_str
as introduced by #76525.Api:
Drain::as_str()
AsRef<str> for Drain
AsRef<[u8]> for Drain
The first one is now gated behind
feature(string_drain_as_str)
. The other two are not available yet, as trait implementations cannot be unstable. These should be added (uncommented) when this feature is stabilized.The text was updated successfully, but these errors were encountered: