Struct pipefile::PipeFile [] [src]

pub struct PipeFile {
    pub read_end: File,
    pub write_end: File,
}

A pipe has two ends and no middle.

Fields

Read from this end of the pipe.

Write to this end of the pipe.