pub struct ExplicitVRLittleEndianDecoder { /* private fields */ }Expand description
A data element decoder for the Explicit VR Little Endian transfer syntax.
Trait Implementations
sourceimpl Clone for ExplicitVRLittleEndianDecoder
impl Clone for ExplicitVRLittleEndianDecoder
sourcefn clone(&self) -> ExplicitVRLittleEndianDecoder
fn clone(&self) -> ExplicitVRLittleEndianDecoder
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ExplicitVRLittleEndianDecoder
impl Debug for ExplicitVRLittleEndianDecoder
sourceimpl Decode for ExplicitVRLittleEndianDecoder
impl Decode for ExplicitVRLittleEndianDecoder
sourcefn decode_header<S>(&self, source: &mut S) -> Result<(DataElementHeader, usize)>where
S: ?Sized + Read,
fn decode_header<S>(&self, source: &mut S) -> Result<(DataElementHeader, usize)>where
S: ?Sized + Read,
Fetch and decode the next data element header from the given source.
This method returns only the header of the element. At the end of this operation, the source
will be pointing at the element’s value data, which should be read or skipped as necessary. Read more
sourcefn decode_item_header<S>(&self, source: &mut S) -> Result<SequenceItemHeader>where
S: ?Sized + Read,
fn decode_item_header<S>(&self, source: &mut S) -> Result<SequenceItemHeader>where
S: ?Sized + Read,
Fetch and decode the next sequence item head from the given source. It is a separate method
because value representation is always implicit when reading item headers and delimiters.
This method returns only the header of the item. At the end of this operation, the source
will be pointing at the beginning of the item’s data, which should be traversed if necessary. Read more
sourceimpl<S: ?Sized> DecodeFrom<S> for ExplicitVRLittleEndianDecoderwhere
S: Read,
impl<S: ?Sized> DecodeFrom<S> for ExplicitVRLittleEndianDecoderwhere
S: Read,
sourcefn decode_header(&self, source: &mut S) -> Result<(DataElementHeader, usize)>
fn decode_header(&self, source: &mut S) -> Result<(DataElementHeader, usize)>
Fetch and decode the next data element header from the given source.
This method returns only the header of the element. At the end of this operation, the source
will be pointing at the element’s value data, which should be read or skipped as necessary. Read more
sourcefn decode_item_header(&self, source: &mut S) -> Result<SequenceItemHeader>
fn decode_item_header(&self, source: &mut S) -> Result<SequenceItemHeader>
Fetch and decode the next sequence item head from the given source. It is a separate method
because value representation is always implicit when reading item headers and delimiters.
This method returns only the header of the item. At the end of this operation, the source
will be pointing at the beginning of the item’s data, which should be traversed if necessary. Read more
sourcefn decode_tag(&self, source: &mut S) -> Result<Tag>
fn decode_tag(&self, source: &mut S) -> Result<Tag>
Decode a DICOM attribute tag from the given source.
sourceimpl Default for ExplicitVRLittleEndianDecoder
impl Default for ExplicitVRLittleEndianDecoder
sourcefn default() -> ExplicitVRLittleEndianDecoder
fn default() -> ExplicitVRLittleEndianDecoder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ExplicitVRLittleEndianDecoder
impl Send for ExplicitVRLittleEndianDecoder
impl Sync for ExplicitVRLittleEndianDecoder
impl Unpin for ExplicitVRLittleEndianDecoder
impl UnwindSafe for ExplicitVRLittleEndianDecoder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more