Trait std::os::wasi::io::FromRawFd[][src]

pub trait FromRawFd {
    unsafe fn from_raw_fd(fd: RawFd) -> Self;
}
🔬 This is a nightly-only experimental API. (wasi_ext)
This is supported on WASI only.

A trait to express the ability to construct an object from a raw file descriptor.

Required methods

unsafe fn from_raw_fd(fd: RawFd) -> Self[src]

🔬 This is a nightly-only experimental API. (wasi_ext)

Constructs a new instance of Self from the given raw file descriptor.

This function consumes ownership of the specified file descriptor. The returned object will take responsibility for closing it when the object goes out of scope.

This function is also unsafe as the primitives currently returned have the contract that they are the sole owner of the file descriptor they are wrapping. Usage of this function could accidentally allow violating this contract which can cause memory unsafety in code that relies on it being true.

Loading content...

Implementors

impl FromRawFd for File[src]

unsafe fn from_raw_fd(fd: RawFd) -> File

Notable traits for File

impl Read for Fileimpl Read for &Fileimpl Write for Fileimpl Write for &File
[src]

🔬 This is a nightly-only experimental API. (wasi_ext)

impl FromRawFd for TcpListener[src]

unsafe fn from_raw_fd(fd: RawFd) -> TcpListener[src]

🔬 This is a nightly-only experimental API. (wasi_ext)

impl FromRawFd for TcpStream[src]

unsafe fn from_raw_fd(fd: RawFd) -> TcpStream

Notable traits for TcpStream

impl Read for TcpStreamimpl Read for &TcpStreamimpl Write for TcpStreamimpl Write for &TcpStream
[src]

🔬 This is a nightly-only experimental API. (wasi_ext)

impl FromRawFd for UdpSocket[src]

unsafe fn from_raw_fd(fd: RawFd) -> UdpSocket[src]

🔬 This is a nightly-only experimental API. (wasi_ext)

impl FromRawFd for RawFd1.48.0[src]

unsafe fn from_raw_fd(fd: RawFd) -> RawFd[src]

🔬 This is a nightly-only experimental API. (wasi_ext)
Loading content...