Trait std::os::wasi::ffi::OsStringExt

1.0.0 · source ·
pub trait OsStringExt: Sealed {
    // Required methods
    fn from_vec(vec: Vec<u8>) -> Self;
    fn into_vec(self) -> Vec<u8> ;
}
Available on WASI only.
Expand description

特定于平台的 OsString 扩展。

这个 trait 是封闭的:它不能在标准库之外实现。 这是为了将来的附加方法不会破坏更改。

Required Methods§

source

fn from_vec(vec: Vec<u8>) -> Self

从字节 vector 创建 OsString

有关示例,请参见模块文档。

source

fn into_vec(self) -> Vec<u8>

产生此 OsString 的底层字节 vector。

有关示例,请参见模块文档。

Implementors§