1.1.0[−][src]Trait std::os::windows::io::FromRawSocket
This is supported on Windows only.
Create I/O objects from raw sockets.
Required Methods
unsafe fn from_raw_socket(sock: RawSocket) -> Self
[−]
This is supported on Windows only.
Creates a new I/O object from the given raw socket.
This function will consume ownership of the socket provided and it will be closed when the returned 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.
Implementors
impl FromRawSocket for TcpListener
[src]
[−]
impl FromRawSocket for TcpListener
unsafe fn from_raw_socket(sock: RawSocket) -> TcpListener
[src]
unsafe fn from_raw_socket(sock: RawSocket) -> TcpListener
This is supported on Windows only.
impl FromRawSocket for TcpStream
[src]
[−]
impl FromRawSocket for TcpStream
ⓘImportant traits for TcpStreamunsafe fn from_raw_socket(sock: RawSocket) -> TcpStream
[src]
ⓘImportant traits for TcpStream
unsafe fn from_raw_socket(sock: RawSocket) -> TcpStream
This is supported on Windows only.
impl FromRawSocket for UdpSocket
[src]
[−]
impl FromRawSocket for UdpSocket
unsafe fn from_raw_socket(sock: RawSocket) -> UdpSocket
[src]
unsafe fn from_raw_socket(sock: RawSocket) -> UdpSocket
This is supported on Windows only.