🔬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§
- Pipe
Reader Experimental Read end of the anonymous pipe. - Pipe
Writer Experimental Write end of the anonymous pipe.
Functions§
- pipe
Experimental Create anonymous pipe that is close-on-exec and blocking.