Trait sgx_tstd::os::unix::fs::FileTypeExt[][src]

pub trait FileTypeExt {
    fn is_block_device(&self) -> bool;
fn is_char_device(&self) -> bool;
fn is_fifo(&self) -> bool;
fn is_socket(&self) -> bool; }

Add support for special unix types (block/char device, fifo and socket).

Required Methods

Returns whether this file type is a block device.

Returns whether this file type is a char device.

Returns whether this file type is a fifo.

Returns whether this file type is a socket.

Implementors