Enum kite_rocksdb::StoredFieldReadError [] [src]

pub enum StoredFieldReadError {
    InvalidFieldRef(FieldRef),
    RocksDBError(Error),
    TextFieldUTF8DecodeError(Vec<u8>, Utf8Error),
    BooleanFieldDecodeError(Vec<u8>),
    IntegerFieldValueSizeError(usize),
}

Variants

The provided FieldRef wasn't valid for this index

A RocksDB error occurred while reading from the disk

A UTF-8 decode error occured while reading a Text field

A boolean field was read but the value wasn't a boolean

An integer/datetime field was read but the value wasn't 8 bytes

Trait Implementations

impl From<Error> for StoredFieldReadError
[src]

Performs the conversion.