dicom-parser 0.5.3

A middle-level parser and printer of DICOM data sets
Documentation
#![allow(clippy::derive_partial_eq_without_eq)]
//! This crate works on top of DICOM encoding primitives to provide transfer
//! syntax resolution and abstraction for parsing DICOM data sets, which
//! ultimately enables the user to perceive the DICOM object as a sequence of
//! tokens.
//!
//! For the time being, all APIs are based on synchronous I/O.
//!
//! For a more intuitive, object-oriented API, please see the `dicom-object`
//! crate.
pub mod dataset;
pub mod stateful;

mod util;

pub use dataset::DataSetReader;
pub use stateful::decode::{DynStatefulDecoder, StatefulDecode, StatefulDecoder};
pub use stateful::encode::StatefulEncoder;