io_lifetimes

Trait IntoFilelike

Source
pub trait IntoFilelike: Into<OwnedHandle> {
    // Required method
    fn into_filelike(self) -> OwnedFilelike;
}
Expand description

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

This is a portability abstraction over Unix-like Into<OwnedFd> and Windows’ Into<OwnedHandle>.

Required Methods§

Source

fn into_filelike(self) -> OwnedFilelike

Consumes this object, returning the underlying filelike object.

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.

Implementors§