Struct dicom_encoding::decode::implicit_le::ImplicitVRLittleEndianDecoder[][src]

pub struct ImplicitVRLittleEndianDecoder<D> { /* fields omitted */ }

A data element decoder for the Explicit VR Little Endian transfer syntax. This type contains a reference to an attribute dictionary for resolving value representations.

Implementations

impl ImplicitVRLittleEndianDecoder<StandardDataDictionary>[src]

pub fn with_std_dict() -> Self[src]

Retrieve this decoder using the standard data dictionary.

pub fn new() -> Self[src]

Retrieve this decoder using the standard data dictionary.

impl<D> ImplicitVRLittleEndianDecoder<D> where
    D: DataDictionary
[src]

pub fn with_dict(dictionary: D) -> Self[src]

Retrieve this decoder using a custom data dictionary.

Trait Implementations

impl<D> Debug for ImplicitVRLittleEndianDecoder<D>[src]

impl<D> Decode for ImplicitVRLittleEndianDecoder<D> where
    D: DataDictionary
[src]

impl<S: ?Sized, D> DecodeFrom<S> for ImplicitVRLittleEndianDecoder<D> where
    S: Read,
    D: DataDictionary
[src]

impl Default for ImplicitVRLittleEndianDecoder<StandardDataDictionary>[src]

Auto Trait Implementations

impl<D> RefUnwindSafe for ImplicitVRLittleEndianDecoder<D> where
    D: RefUnwindSafe

impl<D> Send for ImplicitVRLittleEndianDecoder<D> where
    D: Send

impl<D> Sync for ImplicitVRLittleEndianDecoder<D> where
    D: Sync

impl<D> Unpin for ImplicitVRLittleEndianDecoder<D> where
    D: Unpin

impl<D> UnwindSafe for ImplicitVRLittleEndianDecoder<D> where
    D: UnwindSafe

Blanket Implementations

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

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

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

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

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

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.