Struct dicom_core::dictionary::UidDictionaryEntryRef
source · pub struct UidDictionaryEntryRef<'a> {
pub uid: &'a str,
pub name: &'a str,
pub alias: &'a str,
pub type: UidType,
pub retired: bool,
}Expand description
A data type for a dictionary entry using string slices for its data.
Fields§
§uid: &'a strThe UID proper
name: &'a strThe full name of the identifier, which may contain spaces
alias: &'a strThe alias of the identifier, with no spaces, usually in UpperCamelCase
type: UidTypeThe type of UID
retired: boolWhether this SOP class is retired
Implementations§
Trait Implementations§
source§impl<'a> Clone for UidDictionaryEntryRef<'a>
impl<'a> Clone for UidDictionaryEntryRef<'a>
source§fn clone(&self) -> UidDictionaryEntryRef<'a>
fn clone(&self) -> UidDictionaryEntryRef<'a>
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> Debug for UidDictionaryEntryRef<'a>
impl<'a> Debug for UidDictionaryEntryRef<'a>
source§impl<'a> PartialEq<UidDictionaryEntryRef<'a>> for UidDictionaryEntryRef<'a>
impl<'a> PartialEq<UidDictionaryEntryRef<'a>> for UidDictionaryEntryRef<'a>
source§fn eq(&self, other: &UidDictionaryEntryRef<'a>) -> bool
fn eq(&self, other: &UidDictionaryEntryRef<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'a> UidDictionaryEntry for UidDictionaryEntryRef<'a>
impl<'a> UidDictionaryEntry for UidDictionaryEntryRef<'a>
impl<'a> StructuralPartialEq for UidDictionaryEntryRef<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for UidDictionaryEntryRef<'a>
impl<'a> Send for UidDictionaryEntryRef<'a>
impl<'a> Sync for UidDictionaryEntryRef<'a>
impl<'a> Unpin for UidDictionaryEntryRef<'a>
impl<'a> UnwindSafe for UidDictionaryEntryRef<'a>
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