pub trait FromRawSocket { unsafe fn from_raw_socket(sock: RawSocket) -> Self; }
Creates I/O objects from raw sockets.
unsafe fn from_raw_socket(sock: RawSocket) -> Self
Creates a new I/O object from the given raw socket.
This function will consume ownership of the socket provided and it will be closed when the returned object goes out of scope.
This function is also unsafe as the primitives currently returned have the contract that they are the sole owner of the file descriptor they are wrapping. Usage of this function could accidentally allow violating this contract which can cause memory unsafety in code that relies on it being true.
impl FromRawSocket for TcpListener
[src]
unsafe fn from_raw_socket(sock: RawSocket) -> TcpListener
[src]
impl FromRawSocket for TcpStream
[src]
unsafe fn from_raw_socket(sock: RawSocket) -> TcpStreamⓘNotable traits for TcpStream
impl Read for TcpStream
impl<'_> Read for &'_ TcpStream
impl Write for TcpStream
impl<'_> Write for &'_ TcpStream
[src]
impl FromRawSocket for UdpSocket
[src]
unsafe fn from_raw_socket(sock: RawSocket) -> UdpSocket
[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.FromRawSocket.html