- Notifications
You must be signed in to change notification settings - Fork 14k
Open
Labels
A-fmtArea: `core::fmt`Area: `core::fmt`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-unimplementedStatus: The feature has not been implemented.Status: The feature has not been implemented.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
Feature gate: #![feature(fmt_arguments_from_str)]
This is a tracking issue for core::fmt::Arguments::from_str(), which converts a &'static str to a fmt::Arguments.
Public API
// core::fmt impl<'a> Arguments<'a> { pub const fn from_str(s: &'static str) -> Arguments<'a>; }Steps / History
- Change to fmt::Arguments implementation to make it possible: New format_args!() and fmt::Arguments implementation #148789
- Exposing from_str() as unstable: Expose fmt::Arguments::from_str as unstable. #148906
- Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- Do we feel comfortable committing to always having a fmt::Arguments implementation that can represent a &str directly?
Metadata
Metadata
Assignees
Labels
A-fmtArea: `core::fmt`Area: `core::fmt`C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-unimplementedStatus: The feature has not been implemented.Status: The feature has not been implemented.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.