Struct dicom_core::dictionary::DataDictionaryEntryBuf
source · pub struct DataDictionaryEntryBuf {
pub tag: TagRange,
pub alias: String,
pub vr: VR,
}Expand description
A data type for a dictionary entry with full ownership.
Fields§
§tag: TagRangeThe attribute tag range
alias: StringThe alias of the attribute, with no spaces, usually InCapitalizedCamelCase
vr: VRThe typical value representation of the attribute
Trait Implementations§
source§impl Clone for DataDictionaryEntryBuf
impl Clone for DataDictionaryEntryBuf
source§fn clone(&self) -> DataDictionaryEntryBuf
fn clone(&self) -> DataDictionaryEntryBuf
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl DataDictionaryEntry for DataDictionaryEntryBuf
impl DataDictionaryEntry for DataDictionaryEntryBuf
source§fn tag_range(&self) -> TagRange
fn tag_range(&self) -> TagRange
The full possible tag range of the atribute,
which this dictionary entry can represent.
source§fn alias(&self) -> &str
fn alias(&self) -> &str
The alias of the attribute, with no spaces, usually in UpperCamelCase.
source§impl Debug for DataDictionaryEntryBuf
impl Debug for DataDictionaryEntryBuf
source§impl PartialEq for DataDictionaryEntryBuf
impl PartialEq for DataDictionaryEntryBuf
source§fn eq(&self, other: &DataDictionaryEntryBuf) -> bool
fn eq(&self, other: &DataDictionaryEntryBuf) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataDictionaryEntryBuf
Auto Trait Implementations§
impl RefUnwindSafe for DataDictionaryEntryBuf
impl Send for DataDictionaryEntryBuf
impl Sync for DataDictionaryEntryBuf
impl Unpin for DataDictionaryEntryBuf
impl UnwindSafe for DataDictionaryEntryBuf
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more