[−][src]Trait sgx_tstd::os::unix::prelude::FileTypeExt
Unix-specific extensions for FileType
.
Adds support for special Unix file types such as block/character devices, pipes, and sockets.
Required methods
fn is_block_device(&self) -> bool
Returns true
if this file type is a block device.
fn is_char_device(&self) -> bool
Returns true
if this file type is a char device.
fn is_fifo(&self) -> bool
Returns true
if this file type is a fifo.
fn is_socket(&self) -> bool
Returns true
if this file type is a socket.