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

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

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

Required Associated Types§

The iterator type through which tokens are obtained.

Required Methods§

Convert the value into tokens.

Implementations on Foreign Types§

Implementors§