#[non_exhaustive]
pub enum LazyDataToken<D> {
    ElementHeader(DataElementHeader),
    SequenceStart {
        tag: Tag,
        len: Length,
    },
    PixelSequenceStart,
    SequenceEnd,
    ItemStart {
        len: Length,
    },
    ItemEnd,
    LazyValue {
        header: DataElementHeader,
        decoder: D,
    },
    LazyItemValue {
        len: u32,
        decoder: D,
    },
}
Expand description

A lazy data token for reading a data set without requiring values to be fully read in memory. This is part of the interpretation of a data set as a stream of symbols, which may either represent data headers or actual value data.

The parameter type D represents the original type of the stateful decoder, and through which the values can be retrieved.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

ElementHeader(DataElementHeader)

A data header of a primitive value.

§

SequenceStart

Fields

§tag: Tag
§len: Length

The beginning of a sequence element.

§

PixelSequenceStart

The beginning of an encapsulated pixel data element.

§

SequenceEnd

The ending delimiter of a sequence or encapsulated pixel data.

§

ItemStart

Fields

§len: Length

The beginning of a new item in the sequence.

§

ItemEnd

The ending delimiter of an item.

§

LazyValue

Fields

§header: DataElementHeader

the header of the respective value

§decoder: D

the stateful decoder for fetching the bytes of the value

An element value yet to be fetched

§

LazyItemValue

Fields

§len: u32

the full length of the value, always well defined

§decoder: D

the stateful decoder for fetching the bytes of the value

An item value yet to be fetched

Implementations§

Check whether this token represents the start of a sequence of nested data sets.

Check whether this token represents the end of a sequence or the end of an encapsulated element.

Construct the data token into memory, consuming the reader if necessary.

If the token represents a lazy element value, the inner decoder is read with string preservation.

Construct the data token into memory, consuming the reader if necessary.

If the token represents a lazy element value, the inner decoder is read with the given value reading strategy.

Retrieve a primitive element value from the token, consuming the reader with the given reading strategy.

The operation fails if the token does not represent an element value.

Retrieve a primitive element value from the token, consuming the reader with the default reading strategy.

The operation fails if the token does not represent an element value.

Read the bytes of a value into the given writer, consuming the reader.

This operation will not interpret the value, like in the Bytes value reading strategy. It works for both data elements and non-dataset items.

The operation fails if the token does not represent an element or item value.

Convert this token into a structured representation, for diagnostics and error reporting purposes.

Create a structured representation of this token, for diagnostics and error reporting purposes.

Trait Implementations§

Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more