Module creusot_contracts::std::pipe
source · 🔬This is a nightly-only experimental API. (
anonymous_pipe
)Expand description
Module for anonymous pipe
#![feature(anonymous_pipe)]
let (reader, writer) = std::pipe::pipe()?;
Structs§
- PipeReaderExperimentalRead end of the anonymous pipe.
- PipeWriterExperimentalWrite end of the anonymous pipe.
Functions§
- pipeExperimentalCreate anonymous pipe that is close-on-exec and blocking.