We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
string_from_utf8_lossy_owned
Feature gate: #![feature(string_from_utf8_lossy_owned)]
#![feature(string_from_utf8_lossy_owned)]
This is a tracking issue for lossy UTF-8 conversion from Vec<u8> to String.
Vec<u8>
String
impl String { pub fn from_utf8_lossy_owned(v: Vec<u8>) -> String; } impl FromUtf8Error { pub fn into_utf8_lossy(self) -> String { }
Vec::<u8>::into_utf8_lossy
FromUtf8Error::into_utf8_lossy
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩
Feature gate:
#![feature(string_from_utf8_lossy_owned)]This is a tracking issue for lossy UTF-8 conversion from
Vec<u8>toString.Public API
Steps / History
Vec::<u8>::into_utf8_lossy). libs-team#116string_from_utf8_lossy_ownedfor lossy conversion fromVec<u8>toStringmethods #129439FromUtf8Error::into_utf8_lossy#130408Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩