dicom_core/prelude.rs
1//! Prelude module.
2//!
3//! You may import all symbols within for convenient usage of this library.
4//!
5//! # Example
6//!
7//! ```ignore
8//! use dicom_core::prelude::*;
9//! ```
10
11pub use crate::value::{AsRange as _, DicomDate, DicomDateTime, DicomTime};
12pub use crate::{dicom_value, DataElement, DicomValue, Tag, VR};
13pub use crate::{header::HasLength as _, DataDictionary as _};