Enum openat::SimpleType [] [src]

pub enum SimpleType {
    Symlink,
    Dir,
    File,
    Other,
}

This is a simplified file type enum that is easy to match

It doesn't represent all the options, because that enum needs to extensible but most application do not actually need that power, so we provide this simplified enum that works for many appalications.

Variants

Entry is a symlink

Entry is a directory

Entry is a regular file

Entry is neither a symlink, directory nor a regular file

Methods

impl SimpleType
[src]

Find out a simple type from a file Metadata (stat)

Trait Implementations

impl Debug for SimpleType
[src]

Formats the value using the given formatter.

impl Clone for SimpleType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SimpleType
[src]

impl PartialEq for SimpleType
[src]

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

This method tests for !=.

impl Eq for SimpleType
[src]