Trait std::os::windows::io::IntoRawSocket1.4.0[][src]

pub trait IntoRawSocket {
    fn into_raw_socket(self) -> RawSocket;
}
This is supported on Windows only.
Expand description

trait,用于表达使用对象并获得其原始 SOCKET 所有权的能力。

Required methods

消耗此对象,返回原始基础套接字。

此函数将基础套接字的所有权转让给调用者。 这样,调用方便是套接字的唯一所有者,并且在不再需要套接字时必须将其关闭。

Implementors