dicom_core ::dictionary Trait DataDictionaryEntry Copy item path Source pub trait DataDictionaryEntry {
// Required methods
fn tag_range (&self) -> TagRange ;
fn alias (&self) -> &str ;
fn vr (&self) -> VirtualVr ;
// Provided method
fn tag (&self) -> Tag { ... }
}
Expand description The data element dictionary entry type,
representing a DICOM attribute.
The full possible tag range of the attribute,
which this dictionary entry can represent.
The alias of the attribute, with no spaces, usually in UpperCamelCase.
The extended value representation descriptor of the attribute.
The use of VirtualVr
is to attend to edge cases
in which the representation of a value
depends on surrounding context.
Fetch a single tag applicable to this attribute.
Note that this is not necessarily
the original tag used as key for this entry.