Expand description
Provides utilities for working with Unix named pipes / FIFOs.
Traits§
- FileFIFO
Ext - Definitions for
std::fs::Fileextensions for FIFOs
Functions§
- create
- Creates a new named pipe at the path given as
path. Pipe will be created with modemodeif given, else0o644will be used. - open_
read - Opens a named pipe for reading. The file is opened for non-blocking reads
a la
libc’sO_NONBLOCK. - open_
write - Opens a named pipe for writing. The file is opened for non-blocking writes
a la
libc’sO_NONBLOCK.