pub trait FromFd {
    fn from_fd(owned: OwnedFd) -> Self;

    fn from_into_fd<Owned: IntoFd>(into_owned: Owned) -> Self
    where
        Self: Sized
, { ... } }
Expand description

A trait to express the ability to construct an object from a file descriptor.

Required methods

Constructs a new instance of Self from the given file descriptor.

Example
use std::fs::File;
use io_lifetimes::{FromFd, IntoFd, OwnedFd};

let f = File::open("foo.txt")?;
let owned_fd: OwnedFd = f.into_fd();
let f = File::from_fd(owned_fd);

Provided methods

Constructs a new instance of Self from the given file descriptor converted from into_owned.

Example
use std::fs::File;
use io_lifetimes::{FromFd, IntoFd};

let f = File::open("foo.txt")?;
let f = File::from_into_fd(f);

Implementations on Foreign Types

Implementors