Tracking Issue for string_from_utf8_lossy_owned
#129436
Open
Description
Feature gate: #![feature(string_from_utf8_lossy_owned)]
This is a tracking issue for lossy UTF-8 conversion from Vec<u8>
to String
.
Public API
impl String {
pub fn from_utf8_lossy_owned(v: Vec<u8>) -> String;
}
impl FromUtf8Error {
pub fn into_utf8_lossy(self) -> String {
}
Steps / History
- Implementation:
- Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.