Skip to main content

AsSocket

Trait AsSocket 

Source
pub trait AsSocket {
    // Required method
    fn as_socket(&self) -> BorrowedSocket<'_>;
}
Available on docsrs and Unix and (crate features fs or net) only.
Expand description

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl AsSocket for TcpListener

Available on Windows and crate feature net only.
Source§

impl AsSocket for TcpSocket

Available on Windows and crate feature net only.
Source§

impl AsSocket for TcpStream

Available on Windows and crate feature net only.
Source§

impl AsSocket for UdpSocket

Available on Windows only.