Trait async_std::os::windows::io::IntoRawSocket

source ·
pub trait IntoRawSocket {
    // Required method
    fn into_raw_socket(self) -> RawSocket;
}
Expand description

A trait to express the ability to consume an object and acquire ownership of its raw SOCKET.

Required Methods§

source

fn into_raw_socket(self) -> RawSocket

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§