Struct dicom_object::StandardDataDictionary
source · pub struct StandardDataDictionary;Expand description
A data dictionary which consults the library’s global DICOM attribute registry.
Trait Implementations§
source§impl Clone for StandardDataDictionary
impl Clone for StandardDataDictionary
source§fn clone(&self) -> StandardDataDictionary
fn clone(&self) -> StandardDataDictionary
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<'a> DataDictionary for &'a StandardDataDictionary
impl<'a> DataDictionary for &'a StandardDataDictionary
§type Entry = DictionaryEntryRef<'static>
type Entry = DictionaryEntryRef<'static>
The type of the dictionary entry.
source§impl DataDictionary for StandardDataDictionary
impl DataDictionary for StandardDataDictionary
§type Entry = DictionaryEntryRef<'static>
type Entry = DictionaryEntryRef<'static>
The type of the dictionary entry.
source§fn by_name(
&self,
name: &str
) -> Option<&<StandardDataDictionary as DataDictionary>::Entry>
fn by_name(
&self,
name: &str
) -> Option<&<StandardDataDictionary as DataDictionary>::Entry>
Fetch an entry by its usual alias (e.g. “PatientName” or “SOPInstanceUID”).
Aliases are usually case sensitive and not separated by spaces. Read more
source§fn by_tag(
&self,
tag: Tag
) -> Option<&<StandardDataDictionary as DataDictionary>::Entry>
fn by_tag(
&self,
tag: Tag
) -> Option<&<StandardDataDictionary as DataDictionary>::Entry>
Fetch an entry by its tag.
source§impl Debug for StandardDataDictionary
impl Debug for StandardDataDictionary
source§impl Default for StandardDataDictionary
impl Default for StandardDataDictionary
source§fn default() -> StandardDataDictionary
fn default() -> StandardDataDictionary
Returns the “default value” for a type. Read more
source§impl Display for StandardDataDictionary
impl Display for StandardDataDictionary
source§impl Hash for StandardDataDictionary
impl Hash for StandardDataDictionary
source§impl Ord for StandardDataDictionary
impl Ord for StandardDataDictionary
source§fn cmp(&self, other: &StandardDataDictionary) -> Ordering
fn cmp(&self, other: &StandardDataDictionary) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<StandardDataDictionary> for StandardDataDictionary
impl PartialEq<StandardDataDictionary> for StandardDataDictionary
source§fn eq(&self, other: &StandardDataDictionary) -> bool
fn eq(&self, other: &StandardDataDictionary) -> bool
source§impl PartialOrd<StandardDataDictionary> for StandardDataDictionary
impl PartialOrd<StandardDataDictionary> for StandardDataDictionary
source§fn partial_cmp(&self, other: &StandardDataDictionary) -> Option<Ordering>
fn partial_cmp(&self, other: &StandardDataDictionary) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more