pub struct ExplicitVRLittleEndianEncoder { /* private fields */ }Expand description
A concrete encoder for the transfer syntax ExplicitVRLittleEndian
Trait Implementations
sourceimpl BasicEncode for ExplicitVRLittleEndianEncoder
impl BasicEncode for ExplicitVRLittleEndianEncoder
sourcefn endianness(&self) -> Endianness
fn endianness(&self) -> Endianness
Retrieve the encoder’s endianness.
sourcefn encode_us<S>(&self, to: S, value: u16) -> Result<()>where
S: Write,
fn encode_us<S>(&self, to: S, value: u16) -> Result<()>where
S: Write,
Encode an unsigned short value to the given writer.
sourcefn encode_ul<S>(&self, to: S, value: u32) -> Result<()>where
S: Write,
fn encode_ul<S>(&self, to: S, value: u32) -> Result<()>where
S: Write,
Encode an unsigned long value to the given writer.
sourcefn encode_uv<S>(&self, to: S, value: u64) -> Result<()>where
S: Write,
fn encode_uv<S>(&self, to: S, value: u64) -> Result<()>where
S: Write,
Encode an unsigned very long value to the given writer.
sourcefn encode_ss<S>(&self, to: S, value: i16) -> Result<()>where
S: Write,
fn encode_ss<S>(&self, to: S, value: i16) -> Result<()>where
S: Write,
Encode a signed short value to the given writer.
sourcefn encode_sl<S>(&self, to: S, value: i32) -> Result<()>where
S: Write,
fn encode_sl<S>(&self, to: S, value: i32) -> Result<()>where
S: Write,
Encode a signed long value to the given writer.
sourcefn encode_sv<S>(&self, to: S, value: i64) -> Result<()>where
S: Write,
fn encode_sv<S>(&self, to: S, value: i64) -> Result<()>where
S: Write,
Encode a signed very long value to the given writer.
sourcefn encode_fl<S>(&self, to: S, value: f32) -> Result<()>where
S: Write,
fn encode_fl<S>(&self, to: S, value: f32) -> Result<()>where
S: Write,
Encode a single precision float value to the given writer.
sourcefn encode_fd<S>(&self, to: S, value: f64) -> Result<()>where
S: Write,
fn encode_fd<S>(&self, to: S, value: f64) -> Result<()>where
S: Write,
Encode a double precision float value to the given writer.
sourcefn with_encoder<T, F1, F2>(&self, f_le: F1, f_be: F2) -> Twhere
F1: FnOnce(LittleEndianBasicEncoder) -> T,
F2: FnOnce(BigEndianBasicEncoder) -> T,
fn with_encoder<T, F1, F2>(&self, f_le: F1, f_be: F2) -> Twhere
F1: FnOnce(LittleEndianBasicEncoder) -> T,
F2: FnOnce(BigEndianBasicEncoder) -> T,
If this encoder is in Little Endian, evaluate the first function.
Otherwise, evaluate the second one. Read more
sourcefn encode_primitive<W>(&self, to: W, value: &PrimitiveValue) -> Result<usize>where
W: Write,
fn encode_primitive<W>(&self, to: W, value: &PrimitiveValue) -> Result<usize>where
W: Write,
Encode a primitive value to the given writer. The default implementation
delegates to the other value encoding methods. Read more
sourceimpl Clone for ExplicitVRLittleEndianEncoder
impl Clone for ExplicitVRLittleEndianEncoder
sourcefn clone(&self) -> ExplicitVRLittleEndianEncoder
fn clone(&self) -> ExplicitVRLittleEndianEncoder
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 ExplicitVRLittleEndianEncoder
impl Debug for ExplicitVRLittleEndianEncoder
sourceimpl Default for ExplicitVRLittleEndianEncoder
impl Default for ExplicitVRLittleEndianEncoder
sourcefn default() -> ExplicitVRLittleEndianEncoder
fn default() -> ExplicitVRLittleEndianEncoder
Returns the “default value” for a type. Read more
sourceimpl Encode for ExplicitVRLittleEndianEncoder
impl Encode for ExplicitVRLittleEndianEncoder
sourcefn encode_tag<W>(&self, to: W, tag: Tag) -> Result<()>where
W: Write,
fn encode_tag<W>(&self, to: W, tag: Tag) -> Result<()>where
W: Write,
Encode and write an element tag.
sourcefn encode_element_header<W>(&self, to: W, de: DataElementHeader) -> Result<usize>where
W: Write,
fn encode_element_header<W>(&self, to: W, de: DataElementHeader) -> Result<usize>where
W: Write,
Encode and write a data element header to the given destination.
Returns the number of bytes effectively written on success. Read more
sourcefn encode_item_header<W>(&self, to: W, len: u32) -> Result<()>where
W: Write,
fn encode_item_header<W>(&self, to: W, len: u32) -> Result<()>where
W: Write,
Encode and write a DICOM sequence item header to the given destination.
sourcefn encode_item_delimiter<W>(&self, to: W) -> Result<()>where
W: Write,
fn encode_item_delimiter<W>(&self, to: W) -> Result<()>where
W: Write,
Encode and write a DICOM sequence item delimiter to the given destination.
sourcefn encode_sequence_delimiter<W>(&self, to: W) -> Result<()>where
W: Write,
fn encode_sequence_delimiter<W>(&self, to: W) -> Result<()>where
W: Write,
Encode and write a DICOM sequence delimiter to the given destination.
sourcefn encode_primitive<W>(&self, to: W, value: &PrimitiveValue) -> Result<usize>where
W: Write,
fn encode_primitive<W>(&self, to: W, value: &PrimitiveValue) -> Result<usize>where
W: Write,
Encode and write a primitive DICOM value to the given destination.
Auto Trait Implementations
impl RefUnwindSafe for ExplicitVRLittleEndianEncoder
impl Send for ExplicitVRLittleEndianEncoder
impl Sync for ExplicitVRLittleEndianEncoder
impl Unpin for ExplicitVRLittleEndianEncoder
impl UnwindSafe for ExplicitVRLittleEndianEncoder
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