1.4.0[−][src]Trait std::os::windows::io::IntoRawSocket
This is supported on Windows only.
A trait to express the ability to consume an object and acquire ownership of
its raw SOCKET.
Required Methods
fn into_raw_socket(self) -> RawSocket
This is supported on Windows only.
Consumes this object, returning the raw underlying socket.
This function transfers ownership of the underlying socket to the caller. Callers are then the unique owners of the socket and must close it once it's no longer needed.
Implementors
impl IntoRawSocket for TcpListener[src]
impl IntoRawSocket for TcpListenerfn into_raw_socket(self) -> RawSocket[src]
fn into_raw_socket(self) -> RawSocketThis is supported on Windows only.
impl IntoRawSocket for TcpStream[src]
impl IntoRawSocket for TcpStreamfn into_raw_socket(self) -> RawSocket[src]
fn into_raw_socket(self) -> RawSocketThis is supported on Windows only.
impl IntoRawSocket for UdpSocket[src]
impl IntoRawSocket for UdpSocketfn into_raw_socket(self) -> RawSocket[src]
fn into_raw_socket(self) -> RawSocketThis is supported on Windows only.