Skip to main content

IntoRawSocket

Trait IntoRawSocket 

Source
pub trait IntoRawSocket {
    // Required method
    fn into_raw_socket(self) -> RawSocket;
}
Available on crate feature docs and crate feature std and (Windows or crate feature docs) only.
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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl IntoRawSocket for TcpListener

Available on crate feature default and non-target_os=unknown only.
Source§

impl IntoRawSocket for TcpStream

Available on crate feature default and non-target_os=unknown only.
Source§

impl IntoRawSocket for UdpSocket

Available on crate feature default and non-target_os=unknown only.