pub trait IntoTokens {
type Iter: Iterator<Item = DataToken>;
// Required methods
fn into_tokens(self) -> Self::Iter;
fn into_tokens_with_options(self, options: IntoTokensOptions) -> Self::Iter;
}
Expand description
A trait for converting structured DICOM data into a stream of data tokens.