Struct std::fs::FileType1.1.0 [] [src]

pub struct FileType(_);

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

Returns whether this file type is a block device.

fn is_char_device(&self) -> bool

Returns whether this file type is a char device.

fn is_fifo(&self) -> bool

Returns whether this file type is a fifo.

fn is_socket(&self) -> bool

Returns whether this file type is a socket.

Derived Implementations

impl Hash for FileType
[src]

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

Feeds this value into the state given, updating the hasher as necessary.

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

Feeds a slice of this type into the state provided.

impl Eq for FileType
[src]

impl PartialEq for FileType
[src]

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.

impl Clone for FileType
[src]

fn clone(&self) -> FileType

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for FileType
[src]