Enum dicom_parser::stateful::decode::Error [−][src]
#[non_exhaustive]
pub enum Error {
Show 15 variants
UnsupportedTransferSyntax {
ts: &'static str,
backtrace: Backtrace,
},
UnsupportedCharacterSet {
charset: SpecificCharacterSet,
backtrace: Backtrace,
},
NonPrimitiveType {
position: u64,
backtrace: Backtrace,
},
UndefinedValueLength {
tag: Tag,
position: u64,
backtrace: Backtrace,
},
DecodeElementHeader {
position: u64,
source: Error,
},
DecodeItemHeader {
position: u64,
source: Error,
},
DecodeText {
position: u64,
source: DecodeTextError,
},
ReadValueData {
position: u64,
source: Error,
backtrace: Backtrace,
},
SeekReader {
position: u64,
new_position: u64,
source: Error,
backtrace: Backtrace,
},
DeserializeValue {
position: u64,
source: Error,
},
ReadInt {
position: u64,
source: ParseIntError,
},
ReadFloat {
position: u64,
source: ParseFloatError,
},
InvalidDateValue {
position: u64,
string: String,
backtrace: Backtrace,
},
InvalidTimeValue {
position: u64,
string: String,
backtrace: Backtrace,
},
InvalidDateTimeValue {
position: u64,
string: String,
backtrace: Backtrace,
},
}Variants (Non-exhaustive)
This enum is marked as 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.
Fields of UnsupportedCharacterSet
charset: SpecificCharacterSetbacktrace: BacktraceFields of DecodeText
position: u64source: DecodeTextErrorFields of ReadInt
position: u64source: ParseIntErrorFields of ReadFloat
position: u64source: ParseFloatErrorTrait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more