Enum rkv::error::DataError[][src]

pub enum DataError {
    UnknownType(u8),
    UnexpectedType {
        expected: Type,
        actual: Type,
    },
    Empty,
    DecodingError {
        value_type: Type,
        err: Box<ErrorKind>,
    },
    EncodingError(Box<ErrorKind>),
    InvalidUuid,
}

Variants

Fields of UnexpectedType

Fields of DecodingError

Trait Implementations

impl Debug for DataError
[src]

Formats the value using the given formatter. Read more

impl From<Box<ErrorKind>> for DataError
[src]

Performs the conversion.

impl From<DataError> for StoreError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DataError

impl Sync for DataError