[][src]Enum imdb_index::ErrorKind

pub enum ErrorKind {
    Path(PathBuf),
    VersionMismatch {
        expected: u64,
        got: u64,
    },
    UnknownTitle(String),
    UnknownScorer(String),
    UnknownNgramType(String),
    UnknownSimilarity(String),
    UnknownDirective(String),
    Bug(String),
    Config(String),
    Csv(String),
    Fst(String),
    Io,
    Number,
    // some variants omitted
}

The specific kind of error that can occur.

Variants

Path(PathBuf)

An error that occurred while working with a file path.

VersionMismatch

An index version mismatch. This error occurs when the version of the index is different from the version supported by this version of imdb-index.

Generally speaking, the versions must be exactly equivalent, otherwise this error is returned.

Fields of VersionMismatch

expected: u64

The expected or supported index version.

got: u64

The actual version of the index on disk.

UnknownTitle(String)

An error parsing the type of a title.

The data provided is the unrecognized title type.

UnknownScorer(String)

An error parsing the name of a scorer.

The data provided is the unrecognized name.

UnknownNgramType(String)

An error parsing the name of an ngram type.

The data provided is the unrecognized name.

UnknownSimilarity(String)

An error parsing the name of a similarity function.

The data provided is the unrecognized name.

UnknownDirective(String)

An error parsing the name of a directive from a free-form query.

The data provided is the unrecognized name.

Bug(String)

An unexpected error occurred while reading an index that should not have occurred. Generally, these errors correspond to bugs in this library.

Config(String)

An error occurred while reading/writing the index config.

Csv(String)

An error that occured while writing or reading CSV data.

Fst(String)

An error that occured while creating an FST index.

Io

An unexpected I/O error occurred.

Number

An error occurred while parsing a number in a free-form query.

Trait Implementations

impl PartialEq<ErrorKind> for ErrorKind[src]

impl Eq for ErrorKind[src]

impl From<ErrorKind> for Error[src]

impl Clone for ErrorKind[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ErrorKind[src]

impl Display for ErrorKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]