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

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

Error that may occur when accessing a file read

Variants

The file does not exists.

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

Trait Implementations

impl From<OpenReadError> for Error
[src]

Performs the conversion.

impl Debug for OpenReadError
[src]

Formats the value using the given formatter. Read more

impl From<IOError> for OpenReadError
[src]

Performs the conversion.

impl Display for OpenReadError
[src]

Formats the value using the given formatter. Read more

impl StdError for OpenReadError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations