#[repr(C)]pub struct OrthancPluginDictionaryEntry {
pub group: u16,
pub element: u16,
pub vr: OrthancPluginValueRepresentation,
pub minMultiplicity: u32,
pub maxMultiplicity: u32,
}
Expand description
@brief An entry in the dictionary of DICOM tags.
Fields§
§group: u16
< The group of the tag
element: u16
< The element of the tag
vr: OrthancPluginValueRepresentation
< The value representation of the tag
minMultiplicity: u32
< The minimum multiplicity of the tag
maxMultiplicity: u32
< The maximum multiplicity of the tag (0 means arbitrary)
Trait Implementations§
Source§impl Clone for OrthancPluginDictionaryEntry
impl Clone for OrthancPluginDictionaryEntry
Source§fn clone(&self) -> OrthancPluginDictionaryEntry
fn clone(&self) -> OrthancPluginDictionaryEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OrthancPluginDictionaryEntry
impl Debug for OrthancPluginDictionaryEntry
impl Copy for OrthancPluginDictionaryEntry
Auto Trait Implementations§
impl Freeze for OrthancPluginDictionaryEntry
impl RefUnwindSafe for OrthancPluginDictionaryEntry
impl Send for OrthancPluginDictionaryEntry
impl Sync for OrthancPluginDictionaryEntry
impl Unpin for OrthancPluginDictionaryEntry
impl UnwindSafe for OrthancPluginDictionaryEntry
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