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.
1 parent 269384a commit a161fe5Copy full SHA for a161fe5
parser/src/error.rs
@@ -19,6 +19,10 @@ quick_error! {
19
InvalidFormat {
20
description("Content is not DICOM or is corrupted")
21
}
22
+ /// A required element in the meta group is missing
23
+ MissingMetaElement(name: &'static str) {
24
+ display("Missing required meta element `{}`", name)
25
+ }
26
/// Raised when the obtained data element was not the one expected.
27
UnexpectedTag(tag: Tag) {
28
description("Unexpected DICOM element tag in current reading position")
parser/src/lib.rs
@@ -7,7 +7,7 @@
7
//!
8
//! For a more intuitive, object-oriented API, please see the `dicom-object`
9
//! crate.
10
-#![recursion_limit = "80"]
+#![recursion_limit = "90"]
11
12
pub mod dataset;
13
pub mod error;
0 commit comments