pub trait IntoFilelike: IntoFd {
    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 IntoFd and Windows’ IntoHandle.

Required Methods

Consumes this object, returning the underlying filelike 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