Trait dicom_core::header::Header[][src]

pub trait Header: HasLength {
    fn tag(&self) -> Tag;

    fn is_item(&self) -> bool { ... }
fn is_item_delimiter(&self) -> bool { ... }
fn is_sequence_delimiter(&self) -> bool { ... }
fn is_encapsulated_pixeldata(&self) -> bool { ... } }
Expand description

A trait for a data type containing a DICOM header.

Required methods

Retrieve the element’s tag as a (group, element) tuple.

Provided methods

Check whether this is the header of an item.

Check whether this is the header of an item delimiter.

Check whether this is the header of a sequence delimiter.

Check whether this is the header of an encapsulated pixel data.

Implementors