dicom_core::dictionary

Trait UidDictionaryEntry

Source
pub trait UidDictionaryEntry {
    // Required methods
    fn uid(&self) -> &str;
    fn name(&self) -> &str;
    fn alias(&self) -> &str;
    fn is_retired(&self) -> bool;
}
Expand description

UID dictionary entry type

Required Methods§

Source

fn uid(&self) -> &str

Get the UID proper.

Source

fn name(&self) -> &str

Get the full name of the identifier.

Source

fn alias(&self) -> &str

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

Source

fn is_retired(&self) -> bool

Get whether the UID is retired.

Implementors§