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_end: File

Read from this end of the pipe.

write_end: File

Write to this end of the pipe.