Trait std::os::windows::io::IntoRawSocket
[−]
[src]
pub trait IntoRawSocket { fn into_raw_socket(self) -> RawSocket; }
: recently added API
A trait to express the ability to consume an object and acquire ownership of
its raw SOCKET
`SOCKET`.
Required Methods
fn into_raw_socket(self) -> RawSocket
: recently added API
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 TcpStream
impl IntoRawSocket for TcpListener
impl IntoRawSocket for UdpSocket
impl IntoRawSocket for TcpStream
impl IntoRawSocket for TcpListener
impl IntoRawSocket for UdpSocket