pub enum ErrorKind {
    NotFound,
    PermissionDenied,
    AlreadyExists,
    Interrupted,
    InvalidFolder,
    InvalidFile,
    InvalidFileName,
    InvalidPath,
    Io(IoError),
    StripPrefix(StripPrefixError),
    OsString(OsString),
    Other,
}
Expand description

A list specifying general categories of fs_extra error.

Variants

NotFound

An entity was not found.

PermissionDenied

The operation lacked the necessary privileges to complete.

AlreadyExists

An entity already exists.

Interrupted

This operation was interrupted.

InvalidFolder

Path does not a directory.

InvalidFile

Path does not a file.

InvalidFileName

Invalid file name.

InvalidPath

Invalid path.

Io(IoError)

Any I/O error.

StripPrefix(StripPrefixError)

Any StripPrefix error.

OsString(OsString)

Any OsString error.

Other

Any fs_extra error not part of this list.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.