Enum fuse_mt::FileType []

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

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)

Trait Implementations

impl Debug for FileType

Formats the value using the given formatter.

impl Hash for FileType

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

Feeds a slice of this type into the state provided.

impl PartialEq<FileType> for FileType

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

This method tests for !=.

impl Copy for FileType

impl Clone for FileType