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

pub struct ImplicitVRLittleEndianDecoder<S: ?Sized, 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.

Methods

impl<S: ?Sized> ImplicitVRLittleEndianDecoder<S, StandardDataDictionary>[src]

pub fn with_std_dict() -> Self[src]

Retrieve this decoder using the standard data dictionary.

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

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

Retrieve this decoder using a custom data dictionary.

Trait Implementations

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

type Source = S

The data source's type.

impl<S: ?Sized> Default for ImplicitVRLittleEndianDecoder<S, StandardDataDictionary>[src]

impl<S: ?Sized, D> Debug for ImplicitVRLittleEndianDecoder<S, D>[src]

Auto Trait Implementations

impl<S: ?Sized, D> Unpin for ImplicitVRLittleEndianDecoder<S, D> where
    D: Unpin,
    S: Unpin

impl<S: ?Sized, D> Sync for ImplicitVRLittleEndianDecoder<S, D> where
    D: Sync,
    S: Sync

impl<S: ?Sized, D> Send for ImplicitVRLittleEndianDecoder<S, D> where
    D: Send,
    S: Send

impl<S: ?Sized, D> UnwindSafe for ImplicitVRLittleEndianDecoder<S, D> where
    D: UnwindSafe,
    S: UnwindSafe

impl<S: ?Sized, D> RefUnwindSafe for ImplicitVRLittleEndianDecoder<S, D> where
    D: RefUnwindSafe,
    S: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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]