pub struct StandardDataDictionary;Expand description
A data dictionary which consults the library’s global DICOM attribute registry.
Trait Implementations
sourceimpl Clone for StandardDataDictionary
impl Clone for StandardDataDictionary
sourcefn clone(&self) -> StandardDataDictionary
fn clone(&self) -> StandardDataDictionary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl DataDictionary for StandardDataDictionary
impl DataDictionary for StandardDataDictionary
sourceimpl<'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.
sourcefn by_name(&self, name: &str) -> Option<&'static DictionaryEntryRef<'static>>
fn by_name(&self, name: &str) -> Option<&'static DictionaryEntryRef<'static>>
Fetch an entry by its usual alias (e.g. “PatientName” or “SOPInstanceUID”). Aliases are usually case sensitive and not separated by spaces. Read more
sourcefn by_tag(&self, tag: Tag) -> Option<&'static DictionaryEntryRef<'static>>
fn by_tag(&self, tag: Tag) -> Option<&'static DictionaryEntryRef<'static>>
Fetch an entry by its tag.
sourceimpl Debug for StandardDataDictionary
impl Debug for StandardDataDictionary
sourceimpl Default for StandardDataDictionary
impl Default for StandardDataDictionary
sourcefn default() -> StandardDataDictionary
fn default() -> StandardDataDictionary
Returns the “default value” for a type. Read more
sourceimpl Display for StandardDataDictionary
impl Display for StandardDataDictionary
sourceimpl Hash for StandardDataDictionary
impl Hash for StandardDataDictionary
sourceimpl Ord for StandardDataDictionary
impl Ord for StandardDataDictionary
sourceimpl PartialOrd<StandardDataDictionary> for StandardDataDictionary
impl PartialOrd<StandardDataDictionary> for StandardDataDictionary
sourcefn partial_cmp(&self, other: &StandardDataDictionary) -> Option<Ordering>
fn partial_cmp(&self, other: &StandardDataDictionary) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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
impl Copy for StandardDataDictionary
impl Eq for StandardDataDictionary
impl StructuralEq for StandardDataDictionary
impl StructuralPartialEq for StandardDataDictionary
Auto Trait Implementations
impl RefUnwindSafe for StandardDataDictionary
impl Send for StandardDataDictionary
impl Sync for StandardDataDictionary
impl Unpin for StandardDataDictionary
impl UnwindSafe for StandardDataDictionary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more