[][src]Module dicom_parser::dataset

This module contains a mid-level abstraction for reading DICOM content sequentially.

The rest of the crate is used to obtain DICOM element headers and values. At this level, headers and values are treated as tokens which can be used to form a syntax tree of a full data set.

Structs

DataSetReader

A higher-level reader for retrieving structure in a DICOM data set from an arbitrary data source.

DicomElementMarker

A data type for a DICOM element residing in a file, or any other source with random access. A position in the file is kept for future access.

LazyDataSetReader

An iterator for retrieving DICOM object element markers from a random access data source.

Enums

DataToken

A token of a DICOM data set stream. This is part of the interpretation of a data set as a stream of symbols, which may either represent data headers or actual value data.