pub trait IntoSocketlike: IntoFd {
    fn into_socketlike(self) -> OwnedSocketlike;
}
Expand description

A portable trait to express the ability to consume an object and acquire ownership of its socketlike object.

This is a portability abstraction over Unix-like IntoFd and Windows’ IntoSocket.

Required methods

Consumes this object, returning the underlying socketlike object.

Implementors