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

pub struct FileType(_);

A structure representing a type of file with accessors for each file type. It is returned by Metadata::file_type method.

Methods

impl FileType
[src]

fn is_dir(&self) -> bool

Test whether this file type represents a directory.

Examples

fn main() { fn foo() -> std::io::Result<()> { use std::fs; let metadata = try!(fs::metadata("foo.txt")); let file_type = metadata.file_type(); assert_eq!(file_type.is_dir(), false); Ok(()) } }
use std::fs;

let metadata = try!(fs::metadata("foo.txt"));
let file_type = metadata.file_type();

assert_eq!(file_type.is_dir(), false);

fn is_file(&self) -> bool

Test whether this file type represents a regular file.

Examples

fn main() { fn foo() -> std::io::Result<()> { use std::fs; let metadata = try!(fs::metadata("foo.txt")); let file_type = metadata.file_type(); assert_eq!(file_type.is_file(), true); Ok(()) } }
use std::fs;

let metadata = try!(fs::metadata("foo.txt"));
let file_type = metadata.file_type();

assert_eq!(file_type.is_file(), true);

Test whether this file type represents a symbolic link.

Examples

fn main() { fn foo() -> std::io::Result<()> { use std::fs; let metadata = try!(fs::metadata("foo.txt")); let file_type = metadata.file_type(); assert_eq!(file_type.is_symlink(), false); Ok(()) } }
use std::fs;

let metadata = try!(fs::metadata("foo.txt"));
let file_type = metadata.file_type();

assert_eq!(file_type.is_symlink(), false);

Trait Implementations

impl Debug for FileType
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

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]

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.