Expand description
Provides utilities for working with Unix named pipes / FIFOs.
Traits§
- FileFIFO
Ext - Definitions for
std::fs::File
extensions for FIFOs
Functions§
- create
- Creates a new named pipe at the path given as
path
. Pipe will be created with modemode
if given, else0o644
will 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
.