Trait std::os::wasi::ffi::OsStringExt1.0.0[][src]

pub trait OsStringExt: Sealed {
    fn from_vec(vec: Vec<u8>) -> Self;
fn into_vec(self) -> Vec<u8>
Notable traits for Vec<u8, A>
impl<A: Allocator> Write for Vec<u8, A>
; }
This is supported on WASI only.
Expand description

OsString 的特定于平台的扩展。

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

Required methods

从字节 vector 创建 OsString

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

产生此 OsString 的基础字节 vector。

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

Implementors