pub trait IntoTokens {
    type Iter: Iterator<Item = DataToken>;

    // Required method
    fn into_tokens(self) -> Self::Iter;
}
Expand description

A trait for converting structured DICOM data into a stream of data tokens.

Required Associated Types§

source

type Iter: Iterator<Item = DataToken>

The iterator type through which tokens are obtained.

Required Methods§

source

fn into_tokens(self) -> Self::Iter

Convert the value into tokens.

Implementations on Foreign Types§

source§

impl<T> IntoTokens for C<T>where T: IntoTokens,

source§

impl IntoTokens for EmptyObject

§

type Iter = Empty<DataToken>

source§

fn into_tokens(self) -> Self::Iter

source§

impl<T> IntoTokens for Vec<T>where T: IntoTokens,

source§

impl<I, P> IntoTokens for DataElement<I, P>where I: IntoTokens + HasLength, P: AsRef<[u8]>,

§

type Iter = DataElementTokens<I, P>

source§

fn into_tokens(self) -> Self::Iter

Implementors§

source§

impl<I> IntoTokens for AsItem<I>where I: IntoTokens,

source§

impl<P> IntoTokens for ItemValue<P>where P: AsRef<[u8]>,

source§

impl<P> IntoTokens for OffsetTableItem<P>where P: AsRef<[u32]>,