pub trait FromRawSocket {
// Required method
unsafe fn from_raw_socket(sock: RawSocket) -> Self;
}
Available on Windows only.
Expand description
Creates I/O objects from raw sockets.
Required Methods§
sourceunsafe fn from_raw_socket(sock: RawSocket) -> Self
unsafe fn from_raw_socket(sock: RawSocket) -> Self
Constructs a new I/O object from the specified raw socket.
This function is typically used to consume ownership of the socket given, passing responsibility for closing the socket to the returned object. When used in this way, the returned object will take responsibility for closing it when the object goes out of scope.
However, consuming ownership is not strictly required. Use a
From<OwnedSocket>::from
implementation for an API which strictly
consumes ownership.
§Safety
The socket
passed in must:
- be an owned socket; in particular, it must be open.
- be a socket that may be freed via
closesocket
.
Object Safety§
This trait is not object safe.