Trait std::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;
}
Unstable (file_type_ext #27796)

: recently added API

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

Required Methods

fn is_block_device(&self) -> bool

Unstable (file_type_ext #27796)

: recently added API

Returns whether this file type is a block device.

fn is_char_device(&self) -> bool

Unstable (file_type_ext #27796)

: recently added API

Returns whether this file type is a char device.

fn is_fifo(&self) -> bool

Unstable (file_type_ext #27796)

: recently added API

Returns whether this file type is a fifo.

fn is_socket(&self) -> bool

Unstable (file_type_ext #27796)

: recently added API

Returns whether this file type is a socket.

Implementors