Enum fuse_mt::FileType [] [src]

pub enum FileType {
    NamedPipe,
    CharDevice,
    BlockDevice,
    Directory,
    RegularFile,
    Symlink,
    Socket,
}

File types

Variants

Named pipe (S_IFIFO)

Character device (S_IFCHR)

Block device (S_IFBLK)

Directory (S_IFDIR)

Regular file (S_IFREG)

Symbolic link (S_IFLNK)

Unix domain socket (S_IFSOCK)

Trait Implementations

impl Copy for FileType
[src]

impl Hash for FileType
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for FileType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<FileType> for FileType
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Debug for FileType
[src]

[src]

Formats the value using the given formatter.