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
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
The beginning of a new item in the sequence.
ItemEnd
The ending delimiter of an item.
LazyValue
An element value yet to be fetched
Fields
§
header: DataElementHeader
the header of the respective value
LazyItemValue
An item value yet to be fetched
Trait Implementations§
Source§impl Clone for LazyDataTokenRepr
impl Clone for LazyDataTokenRepr
Source§fn clone(&self) -> LazyDataTokenRepr
fn clone(&self) -> LazyDataTokenRepr
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LazyDataTokenRepr
impl Debug for LazyDataTokenRepr
Source§impl<D> From<&LazyDataToken<D>> for LazyDataTokenRepr
impl<D> From<&LazyDataToken<D>> for LazyDataTokenRepr
Source§fn from(token: &LazyDataToken<D>) -> Self
fn from(token: &LazyDataToken<D>) -> Self
Converts to this type from the input type.
Source§impl<D> From<LazyDataToken<D>> for LazyDataTokenRepr
impl<D> From<LazyDataToken<D>> for LazyDataTokenRepr
Source§fn from(token: LazyDataToken<D>) -> Self
fn from(token: LazyDataToken<D>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LazyDataTokenRepr
impl PartialEq for LazyDataTokenRepr
impl StructuralPartialEq for LazyDataTokenRepr
Auto Trait Implementations§
impl Freeze for LazyDataTokenRepr
impl RefUnwindSafe for LazyDataTokenRepr
impl Send for LazyDataTokenRepr
impl Sync for LazyDataTokenRepr
impl Unpin for LazyDataTokenRepr
impl UnwindSafe for LazyDataTokenRepr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more