Trait posish::fs::FileTypeExt1.5.0[][src]

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

Re-export types common to Posix-ish platforms. Unix-specific extensions for fs::FileType.

Adds support for special Unix file types such as block/character devices, pipes, and sockets.

Required methods

pub fn is_block_device(&self) -> bool[src]

Returns true if this file type is a block device.

Examples

use std::fs;
use std::os::unix::fs::FileTypeExt;
use std::io;

fn main() -> io::Result<()> {
    let meta = fs::metadata("block_device_file")?;
    let file_type = meta.file_type();
    assert!(file_type.is_block_device());
    Ok(())
}

pub fn is_char_device(&self) -> bool[src]

Returns true if this file type is a char device.

Examples

use std::fs;
use std::os::unix::fs::FileTypeExt;
use std::io;

fn main() -> io::Result<()> {
    let meta = fs::metadata("char_device_file")?;
    let file_type = meta.file_type();
    assert!(file_type.is_char_device());
    Ok(())
}

pub fn is_fifo(&self) -> bool[src]

Returns true if this file type is a fifo.

Examples

use std::fs;
use std::os::unix::fs::FileTypeExt;
use std::io;

fn main() -> io::Result<()> {
    let meta = fs::metadata("fifo_file")?;
    let file_type = meta.file_type();
    assert!(file_type.is_fifo());
    Ok(())
}

pub fn is_socket(&self) -> bool[src]

Returns true if this file type is a socket.

Examples

use std::fs;
use std::os::unix::fs::FileTypeExt;
use std::io;

fn main() -> io::Result<()> {
    let meta = fs::metadata("unix.socket")?;
    let file_type = meta.file_type();
    assert!(file_type.is_socket());
    Ok(())
}
Loading content...

Implementations on Foreign Types

impl FileTypeExt for FileType[src]

Loading content...

Implementors

Loading content...