pub trait OsStrExt: Sealed {
// Required method
fn encode_wide(&self) -> EncodeWide<'_> ⓘ;
}
Available on Windows only.
Expand description
特定于 Windows 的 OsStr
扩展。
这个 trait 是封闭的:它不能在标准库之外实现。 这是为了将来的附加方法不会破坏更改。
Required Methods§
sourcefn encode_wide(&self) -> EncodeWide<'_> ⓘ
fn encode_wide(&self) -> EncodeWide<'_> ⓘ
将 OsStr
重新编码为宽字符序列,即可能格式不正确的 UTF-16。
这是无损的:在结果上调用 OsStringExt::from_wide
,然后调用 encode_wide
,将产生原始代码单元。
请注意,编码不会添加最终的空终止符。
Examples
use std::ffi::OsString;
use std::os::windows::prelude::*;
// "Unicode" 的 UTF-16 编码。
let source = [0x0055, 0x006E, 0x0069, 0x0063, 0x006F, 0x0064, 0x0065];
let string = OsString::from_wide(&source[..]);
let result: Vec<u16> = string.encode_wide().collect();
assert_eq!(&source[..], &result[..]);
Run