Trait unsafe_io::os::windows::IntoRawHandleOrSocket[][src]

pub trait IntoRawHandleOrSocket {
    fn into_raw_handle_or_socket(self) -> RawHandleOrSocket;
}

Like IntoRawHandle and IntoRawSocket, but implementable by types which can implement either one.

Required methods

Loading content...

Implementations on Foreign Types

impl IntoRawHandleOrSocket for File[src]

impl IntoRawHandleOrSocket for ChildStdin[src]

impl IntoRawHandleOrSocket for ChildStdout[src]

impl IntoRawHandleOrSocket for ChildStderr[src]

impl IntoRawHandleOrSocket for TcpStream[src]

impl IntoRawHandleOrSocket for TcpListener[src]

impl IntoRawHandleOrSocket for UdpSocket[src]

Loading content...

Implementors

impl IntoRawHandleOrSocket for UnsafeFile[src]

UnsafeFile doesn't own its handle; see the comments for impl AsRawFd for UnsafeHandle.

impl IntoRawHandleOrSocket for UnsafeHandle[src]

UnsafeHandle doesn't own its handle; see the comments for impl AsRawFd for UnsafeHandle.

impl IntoRawHandleOrSocket for UnsafeReadable[src]

UnsafeReadable doesn't own its handle; see the comments for impl AsRawFd for UnsafeHandle.

impl IntoRawHandleOrSocket for UnsafeSocket[src]

UnsafeSocket doesn't own its handle; see the comments for impl AsRawFd for UnsafeHandle.

impl IntoRawHandleOrSocket for UnsafeWriteable[src]

UnsafeWriteable doesn't own its handle; see the comments for impl AsRawFd for UnsafeHandle.

Loading content...