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.
Required Associated Types§
Required Methods§
fn into_tokens(self) -> Self::Iter
fn into_tokens_with_options(self, options: IntoTokensOptions) -> Self::Iter
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".