Enum fuse_backend_rs::api::vfs::VfsError[][src]

pub enum VfsError {
    Unsupported,
    Mount(Error),
    InodeIndex(String),
    FsIndex(Error),
    PathWalk(Error),
    NotFound(String),
    Initialize(String),
}
Expand description

Vfs error definition

Variants

Unsupported

Operation not supported

Mount

Mount backend filesystem

Tuple Fields of Mount

0: Error
InodeIndex

Illegal inode index is used

Tuple Fields of InodeIndex

0: String
FsIndex

Filesystem index related. For example, an index can’t be allocated.

Tuple Fields of FsIndex

0: Error
PathWalk

Error happened when walking path

Tuple Fields of PathWalk

0: Error
NotFound

Entry can’t be found

Tuple Fields of NotFound

0: String
Initialize

File system can’t ba initialized

Tuple Fields of Initialize

0: String

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

Performs the conversion.

Performs the conversion.

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.