Trait cov::IntoStringLossy[][src]

pub trait IntoStringLossy {
    fn into_string_lossy(self) -> String;
}

Adds the into_string_lossy method to OsString and Vec<u8>.

Required Methods

Consumes the ownership and converts the string-like object into a real string. Unconvertible characters are replaced by U+FFFD.

Implementations on Foreign Types

impl IntoStringLossy for OsString
[src]

impl IntoStringLossy for Vec<u8>
[src]

impl IntoStringLossy for PathBuf
[src]

Implementors