pub trait IntoSocketlike: Into<OwnedSocket> {
    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 Into<OwnedFd> and Windows’ Into<OwnedSocket>.

Required Methods§

Consumes this object, returning the underlying socketlike object.

Example
use std::fs::File;
use io_lifetimes::{IntoFilelike, OwnedFilelike};

let f = File::open("foo.txt")?;
let owned_filelike: OwnedFilelike = f.into_filelike();

Implementors§