Enum tantivy::directory::error::DeleteError[][src]

pub enum DeleteError {
    FileDoesNotExist(PathBuf),
    IOError(IOError),
}

Error that may occur when trying to delete a file

Variants

The file does not exists.

Any kind of IO error that happens when interacting with the underlying IO device.

Trait Implementations

impl Debug for DeleteError
[src]

Formats the value using the given formatter. Read more

impl From<IOError> for DeleteError
[src]

Performs the conversion.

impl Display for DeleteError
[src]

Formats the value using the given formatter. Read more

impl StdError for DeleteError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for DeleteError

impl Sync for DeleteError