[][src]Enum dicom_core::value::InvalidValueReadError

#[non_exhaustive]pub enum InvalidValueReadError {
    NonPrimitiveType {
        backtrace: Backtrace,
    },
    DateTimeZone {
        backtrace: Backtrace,
    },
    ParseFloat {
        backtrace: Backtrace,
        source: ParseFloatError,
    },
    ParseInteger {
        backtrace: Backtrace,
        source: ParseIntError,
    },
    UnexpectedEndOfElement {},
    NarrowConvert {
        value: String,
        backtrace: Backtrace,
    },
    ParseDate {
        source: Error,
    },
    ParseTime {
        source: Error,
    },
    ParseDateTime {
        source: Error,
    },
}

Triggered when a value reading attempt fails.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NonPrimitiveType

Attempted to retrieve a complex value as primitive.

Fields of NonPrimitiveType

backtrace: Backtrace
DateTimeZone

Invalid or ambiguous combination of date with time.

Fields of DateTimeZone

backtrace: Backtrace
ParseFloat

The value cannot be parsed to a floating point number.

Fields of ParseFloat

backtrace: Backtracesource: ParseFloatError
ParseInteger

The value cannot be parsed to an integer.

Fields of ParseInteger

backtrace: Backtracesource: ParseIntError
UnexpectedEndOfElement

An attempt of reading more than the number of bytes in the length attribute was made.

Fields of UnexpectedEndOfElement

NarrowConvert

The value cannot be converted to the target type requested.

Fields of NarrowConvert

value: Stringbacktrace: Backtrace
ParseDate

Fields of ParseDate

source: Error
ParseTime

Fields of ParseTime

source: Error
ParseDateTime

Fields of ParseDateTime

source: Error

Trait Implementations

impl Debug for InvalidValueReadError[src]

impl Display for InvalidValueReadError[src]

impl Error for InvalidValueReadError where
    Self: Debug + Display
[src]

impl ErrorCompat for InvalidValueReadError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsErrorSource for T where
    T: 'static + Error
[src]

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.