Struct std::fs::FileType [] [src]

pub struct FileType(_);
1.1.0

An structure representing a type of file with accessors for each file type.

Methods

impl FileType
[src]

fn is_dir(&self) -> bool

Test whether this file type represents a directory.

fn is_file(&self) -> bool

Test whether this file type represents a regular file.

Test whether this file type represents a symbolic link.

Trait Implementations

impl FileTypeExt for FileType
1.5.0
[src]

fn is_block_device(&self) -> bool

fn is_char_device(&self) -> bool

fn is_fifo(&self) -> bool

fn is_socket(&self) -> bool

Derived Implementations

impl Hash for FileType
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

impl Eq for FileType
[src]

impl PartialEq for FileType
[src]

fn eq(&self, __arg_0: &FileType) -> bool

fn ne(&self, __arg_0: &FileType) -> bool

impl Clone for FileType
[src]

fn clone(&self) -> FileType

fn clone_from(&mut self, source: &Self)
1.0.0

impl Copy for FileType
[src]