Trait dicom_core::header::Header
source · [−]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
Provided Methods
fn is_item_delimiter(&self) -> bool
fn is_item_delimiter(&self) -> bool
Check whether this is the header of an item delimiter.
fn is_sequence_delimiter(&self) -> bool
fn is_sequence_delimiter(&self) -> bool
Check whether this is the header of a sequence delimiter.
fn is_encapsulated_pixeldata(&self) -> bool
fn is_encapsulated_pixeldata(&self) -> bool
Check whether this is the header of an encapsulated pixel data.