[][src]Struct dicom_core::dictionary::TagByName

pub struct TagByName<N, D> { /* fields omitted */ }

Utility data structure that resolves to a DICOM attribute tag at a later time.

Methods

impl<N, D> TagByName<N, D> where
    N: AsRef<str>,
    D: DataDictionary
[src]

pub fn new(dictionary: D, name: N) -> TagByName<N, D>[src]

Create a tag resolver by name using the given dictionary.

Trait Implementations

impl<N, D> From<TagByName<N, D>> for Option<Tag> where
    N: AsRef<str>,
    D: DataDictionary
[src]

impl<N: Clone, D: Clone> Clone for TagByName<N, D>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<N: Debug, D: Debug> Debug for TagByName<N, D>[src]

Auto Trait Implementations

impl<N, D> Send for TagByName<N, D> where
    D: Send,
    N: Send

impl<N, D> Unpin for TagByName<N, D> where
    D: Unpin,
    N: Unpin

impl<N, D> Sync for TagByName<N, D> where
    D: Sync,
    N: Sync

impl<N, D> UnwindSafe for TagByName<N, D> where
    D: UnwindSafe,
    N: UnwindSafe

impl<N, D> RefUnwindSafe for TagByName<N, D> where
    D: RefUnwindSafe,
    N: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]