pub enum LazyDataTokenRepr {
    ElementHeader(DataElementHeader),
    SequenceStart {
        tag: Tag,
        len: Length,
    },
    PixelSequenceStart,
    SequenceEnd,
    ItemStart {
        len: Length,
    },
    ItemEnd,
    LazyValue {
        header: DataElementHeader,
    },
    LazyItemValue {
        len: u32,
    },
}
Expand description

A structured description of a lazy data token, for diagnostics and error reporting purposes.

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

An element value yet to be fetched

§

LazyItemValue

Fields

§len: u32

the full length of the value, always well defined

An item value yet to be fetched

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
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.
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. 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