pub trait IntoSocketlike: Into<OwnedSocket> {
// Required method
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§
Sourcefn into_socketlike(self) -> OwnedSocketlike
fn into_socketlike(self) -> OwnedSocketlike
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();
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.