-
Notifications
You must be signed in to change notification settings - Fork 19
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
ACP: Add OsStr::display
(similar to Path::display
)
#326
Comments
|
We discussed this in the libs-api meeting today. We're happy to accept this ACP, and discussed some of the finer API details:
Feel free to open a tracking issue and open a PR to rust-lang/rust to add it as an unstable feature. |
Add `display` method to `OsStr` Add `display` method to `OsStr` for lossy display of an `OsStr` which may contain invalid unicode. Invalid Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`. This change also makes the `std::ffi::os_str` module public (see rust-lang/libs-team#326 (comment)). - ACP: rust-lang/libs-team#326 - Tracking issue: rust-lang#120048
Add `display` method to `OsStr` Add `display` method to `OsStr` for lossy display of an `OsStr` which may contain invalid unicode. Invalid Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`. This change also makes the `std::ffi::os_str` module public (see rust-lang/libs-team#326 (comment)). - ACP: rust-lang/libs-team#326 - Tracking issue: rust-lang#120048
Add `display` method to `OsStr` Add `display` method to `OsStr` for lossy display of an `OsStr` which may contain invalid unicode. Invalid Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`. This change also makes the `std::ffi::os_str` module public (see rust-lang/libs-team#326 (comment)). - ACP: rust-lang/libs-team#326 - Tracking issue: rust-lang#120048
Add `display` method to `OsStr` Add `display` method to `OsStr` for lossy display of an `OsStr` which may contain invalid unicode. Invalid Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`. This change also makes the `std::ffi::os_str` module public (see rust-lang/libs-team#326 (comment)). - ACP: rust-lang/libs-team#326 - Tracking issue: rust-lang#120048
Add `display` method to `OsStr` Add `display` method to `OsStr` for lossy display of an `OsStr` which may contain invalid unicode. Invalid Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`. This change also makes the `std::ffi::os_str` module public (see rust-lang/libs-team#326 (comment)). - ACP: rust-lang/libs-team#326 - Tracking issue: rust-lang#120048
Rollup merge of rust-lang#120051 - riverbl:os-str-display, r=m-ou-se Add `display` method to `OsStr` Add `display` method to `OsStr` for lossy display of an `OsStr` which may contain invalid unicode. Invalid Unicode sequences are replaced with `U+FFFD REPLACEMENT CHARACTER`. This change also makes the `std::ffi::os_str` module public (see rust-lang/libs-team#326 (comment)). - ACP: rust-lang/libs-team#326 - Tracking issue: rust-lang#120048
Proposal
Problem statement
Sometimes it is desirable to display an
OsStr
with invalid Unicode sequences replaced with�
. Currently, the most obvious way to do this is withOsStr::to_string_lossy
, however this incurs an allocation and additional copy when theOsStr
contains invalid Unicode. It would be useful to have an obvious and efficient way to do this.Motivating examples or use cases
Lapce has a few cases of needing to display an
OsStr
, for example here:Solution sketch
Add a
display
method toOsStr
, similar to the existingPath::display
method. The method would return a type that references theOsStr
and implementsfmt::Display
.The implementation could reuse the logic currently used for
Path::display
. See the most recent commit on https://github.com/riverbl/rust/tree/os-str-display for an example implementation.Alternatives
OsStr::to_string_lossy
allows displaying anOsStr
, but is less efficient.OsStr
implementsAsRef<Path>
, soPath::display
could be used and would be just as efficient as this new method. The main issue I see with usingPath::display
is that it is confusing to anyone reading the code that anOsStr
, the contents of which may not relate to a path, is being converted to aPath
before being displayed.A crate could provide this functionality, either using
Path::display
or a custom implementation on top ofOsStr::as_encoded_bytes
.Links and related work
Path::display
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
Second, if there's a concrete solution:
The text was updated successfully, but these errors were encountered: