pub trait IntoRawSocketlike: IntoRawSocket {
// Required method
fn into_raw_socketlike(self) -> RawSocketlike;
}
Expand description
This is a portability abstraction over Unix-like IntoRawFd
and Windows’
IntoRawSocket
.
Required Methods§
Sourcefn into_raw_socketlike(self) -> RawSocketlike
fn into_raw_socketlike(self) -> RawSocketlike
Returns the raw value.