W3cubDocs

/Rust

Trait std::os::unix::fs::FileTypeExt

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 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

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/fs/trait.FileTypeExt.html