Trait io_lifetimes::IntoSocketlike
source · 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§
sourcefn into_socketlike(self) -> OwnedSocketlike
fn into_socketlike(self) -> OwnedSocketlike
Consumes this object, returning the underlying socketlike object.