Struct dicom_core::dictionary::stub::StubDataDictionary
source · [−]pub struct StubDataDictionary;Expand description
An empty attribute dictionary.
Trait Implementations
sourceimpl Clone for StubDataDictionary
impl Clone for StubDataDictionary
sourcefn clone(&self) -> StubDataDictionary
fn clone(&self) -> StubDataDictionary
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'a> DataDictionary for &'a StubDataDictionary
impl<'a> DataDictionary for &'a StubDataDictionary
type Entry = DictionaryEntryRef<'static>
type Entry = DictionaryEntryRef<'static>
The type of the dictionary entry.
sourcefn by_name(&self, _: &str) -> Option<&DictionaryEntryRef<'static>>
fn by_name(&self, _: &str) -> Option<&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) -> Option<&DictionaryEntryRef<'static>>
fn by_tag(&self, _: Tag) -> Option<&DictionaryEntryRef<'static>>
Fetch an entry by its tag.
sourceimpl DataDictionary for Box<StubDataDictionary>
impl DataDictionary for Box<StubDataDictionary>
type Entry = DictionaryEntryRef<'static>
type Entry = DictionaryEntryRef<'static>
The type of the dictionary entry.
sourcefn by_name(&self, _: &str) -> Option<&DictionaryEntryRef<'static>>
fn by_name(&self, _: &str) -> Option<&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) -> Option<&DictionaryEntryRef<'static>>
fn by_tag(&self, _: Tag) -> Option<&DictionaryEntryRef<'static>>
Fetch an entry by its tag.
sourceimpl DataDictionary for StubDataDictionary
impl DataDictionary for StubDataDictionary
type Entry = DictionaryEntryRef<'static>
type Entry = DictionaryEntryRef<'static>
The type of the dictionary entry.
sourcefn by_name(&self, _: &str) -> Option<&DictionaryEntryRef<'static>>
fn by_name(&self, _: &str) -> Option<&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) -> Option<&DictionaryEntryRef<'static>>
fn by_tag(&self, _: Tag) -> Option<&DictionaryEntryRef<'static>>
Fetch an entry by its tag.
sourceimpl Debug for StubDataDictionary
impl Debug for StubDataDictionary
sourceimpl Default for StubDataDictionary
impl Default for StubDataDictionary
sourcefn default() -> StubDataDictionary
fn default() -> StubDataDictionary
Returns the “default value” for a type. Read more
sourceimpl Hash for StubDataDictionary
impl Hash for StubDataDictionary
sourceimpl Ord for StubDataDictionary
impl Ord for StubDataDictionary
sourcefn cmp(&self, other: &StubDataDictionary) -> Ordering
fn cmp(&self, other: &StubDataDictionary) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<StubDataDictionary> for StubDataDictionary
impl PartialEq<StubDataDictionary> for StubDataDictionary
sourcefn eq(&self, other: &StubDataDictionary) -> bool
fn eq(&self, other: &StubDataDictionary) -> bool
sourceimpl PartialOrd<StubDataDictionary> for StubDataDictionary
impl PartialOrd<StubDataDictionary> for StubDataDictionary
sourcefn partial_cmp(&self, other: &StubDataDictionary) -> Option<Ordering>
fn partial_cmp(&self, other: &StubDataDictionary) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moreimpl Copy for StubDataDictionary
impl Eq for StubDataDictionary
impl StructuralEq for StubDataDictionary
impl StructuralPartialEq for StubDataDictionary
Auto Trait Implementations
impl RefUnwindSafe for StubDataDictionary
impl Send for StubDataDictionary
impl Sync for StubDataDictionary
impl Unpin for StubDataDictionary
impl UnwindSafe for StubDataDictionary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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