[][src]Trait dicom_core::dictionary::DictionaryEntry

pub trait DictionaryEntry {
    fn tag_range(&self) -> TagRange;
fn alias(&self) -> &str;
fn vr(&self) -> VR; fn tag(&self) -> Tag { ... } }

The dictionary entry data type, representing a DICOM attribute.

Required methods

fn tag_range(&self) -> TagRange

The full possible tag range of this attribute.

fn alias(&self) -> &str

The alias of the attribute, with no spaces, usually in UpperCamelCase.

fn vr(&self) -> VR

The typical value representation of the attribute. In some edge cases, an element might not have this VR.

Loading content...

Provided methods

fn tag(&self) -> Tag

The attribute single tag.

Loading content...

Implementors

impl DictionaryEntry for DictionaryEntryBuf[src]

impl<'a> DictionaryEntry for DictionaryEntryRef<'a>[src]

Loading content...