[src]

Struct std::os::Pipe

pub struct Pipe {
    input: c_int,
    out: c_int,
}

A low-level OS in-memory pipe.

Fields

input

A file descriptor representing the reading end of the pipe. Data written on the out file descriptor can be read from this file descriptor.

out

A file descriptor representing the write end of the pipe. Data written to this file descriptor can be read from the input file descriptor.