We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5eeb56e + 14f84fb commit ec178ecCopy full SHA for ec178ec
parser/src/dataset/read.rs
@@ -72,12 +72,12 @@ pub enum Error {
72
bytes_read: u64,
73
backtrace: Backtrace,
74
},
75
+ /// Undefined pixel data item length
76
+ UndefinedItemLength,
77
/// Invalid data element length {len:04X} of {tag} at {bytes_read:#x}
78
InvalidElementLength { tag: Tag, len: u32, bytes_read: u64 },
79
/// Invalid sequence item length {len:04X} at {bytes_read:#x}
80
InvalidItemLength { len: u32, bytes_read: u64 },
- /// Undefined pixel data item length
- UndefinedItemLength,
81
}
82
83
pub type Result<T> = std::result::Result<T, Error>;
0 commit comments