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.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".