Struct dicom_encoding::encode::EncoderFor
source · pub struct EncoderFor<T, W: ?Sized> { /* private fields */ }Expand description
A type binding of an encoder to a target writer.
Implementations§
Trait Implementations§
source§impl<T, W> BasicEncode for EncoderFor<T, W>where
T: BasicEncode,
W: Write + ?Sized,
impl<T, W> BasicEncode for EncoderFor<T, W>where
T: BasicEncode,
W: Write + ?Sized,
source§fn endianness(&self) -> Endianness
fn endianness(&self) -> Endianness
Retrieve the encoder’s endianness.
source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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.
source§fn 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
source§fn 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
source§impl<T, W> EncodeTo<W> for EncoderFor<T, W>where
T: Encode,
W: Write + ?Sized,
impl<T, W> EncodeTo<W> for EncoderFor<T, W>where
T: Encode,
W: Write + ?Sized,
source§fn encode_element_header(
&self,
to: &mut W,
de: DataElementHeader
) -> Result<usize>
fn encode_element_header(
&self,
to: &mut W,
de: DataElementHeader
) -> Result<usize>
Encode and write a data element header to the given destination.
Returns the number of bytes effectively written on success. Read more
source§fn encode_item_header(&self, to: &mut W, len: u32) -> Result<()>
fn encode_item_header(&self, to: &mut W, len: u32) -> Result<()>
Encode and write a DICOM sequence item header to the given destination.
source§fn encode_item_delimiter(&self, to: &mut W) -> Result<()>
fn encode_item_delimiter(&self, to: &mut W) -> Result<()>
Encode and write a DICOM sequence item delimiter to the given destination.
source§fn encode_sequence_delimiter(&self, to: &mut W) -> Result<()>
fn encode_sequence_delimiter(&self, to: &mut W) -> Result<()>
Encode and write a DICOM sequence delimiter to the given destination.
source§fn encode_primitive(&self, to: &mut W, value: &PrimitiveValue) -> Result<usize>
fn encode_primitive(&self, to: &mut W, value: &PrimitiveValue) -> Result<usize>
Encode and write a primitive DICOM value to the given destination.