pub trait IntoRawSocket { fn into_raw_socket(self) -> RawSocket; }
A trait to express the ability to consume an object and acquire ownership of its raw SOCKET
.
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.
impl IntoRawSocket for TcpListener
[src]
fn into_raw_socket(self) -> RawSocket
[src]
impl IntoRawSocket for TcpStream
[src]
fn into_raw_socket(self) -> RawSocket
[src]
impl IntoRawSocket for UdpSocket
[src]
fn into_raw_socket(self) -> RawSocket
[src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/windows/io/trait.IntoRawSocket.html