Skip to content

Commit 2784051

Browse files
authored
Rollup merge of #91697 - dtolnay:lossyfromstr, r=Mark-Simulacrum
Delete Utf8Lossy::from_str This whole type is marked as being for str internals only, but this constructor is never used by str internals. If you had a &str already and wanted to lossy display it or iterate its lossy utf8 chunks, you would simply not use Utf8Lossy because the whole &str is known to be one contiguous valid utf8 chunk. If code really does need to obtain a value of type &Utf8Lossy somewhere, and has only a &str, `Utf8Lossy::from_bytes(s.as_bytes())` remains available. As currently implemented, there is no performance penalty relative to `from_str` i.e. the Utf8Lossy does not "remember" that it was constructed using `from_str` to bypass later utf8 decoding.
2 parents 1d36c6a + 4b0a9c9 commit 2784051

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

library/core/src/str/lossy.rs

-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ pub struct Utf8Lossy {
1212
}
1313

1414
impl Utf8Lossy {
15-
#[must_use]
16-
pub fn from_str(s: &str) -> &Utf8Lossy {
17-
Utf8Lossy::from_bytes(s.as_bytes())
18-
}
19-
2015
#[must_use]
2116
pub fn from_bytes(bytes: &[u8]) -> &Utf8Lossy {
2217
// SAFETY: Both use the same memory layout, and UTF-8 correctness isn't required.

0 commit comments

Comments
 (0)