pub trait IntoRawSocketlike: IntoRawSocket {
    fn into_raw_socketlike(self) -> RawSocketlike;
}
Expand description

This is a portability abstraction over Unix-like [IntoRawFd] and Windows’ IntoRawSocket.

Required methods

Returns the raw value.

Implementors