Enum serde_db::de::ConversionError[][src]

pub enum ConversionError {
    ValueType(String),
    NumberRange(String),
    Incomplete(String),
}

An error type for implementors of DbValue.

Variants

The DbValue cannot be converted into the desired rust type.

The DbValue is to big or too small (negative) fo conversion into the desired rust type.

The DbValue was not yet completely loaded, and further loading is not possible anymore.

Trait Implementations

impl Error for ConversionError
[src]

This method is soft-deprecated. Read more

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

impl Debug for ConversionError
[src]

Formats the value using the given formatter. Read more

impl Display for ConversionError
[src]

Formats the value using the given formatter. Read more

impl From<ConversionError> for DeserializationError
[src]

Performs the conversion.

Auto Trait Implementations