pub struct StatefulEncoder<W, E, T = SpecificCharacterSet> { /* private fields */ }
Expand description

Also called a printer, this encoder type provides a stateful mid-level abstraction for writing DICOM content. Unlike Encode, the stateful encoder knows how to write text values and keeps track of how many bytes were written. W is the write target, E is the encoder, and T is the text codec.

Implementations

Encode and write a data element header.

Encode and write an item header, where len is the specified length of the item (can be 0xFFFF_FFFF for undefined length).

Encode and write an item delimiter.

Encode and write a sequence delimiter.

Write the given bytes directly to the inner writer.

Note that this method (unlike write_bytes) does not perform any additional padding.

Write a primitive DICOM value as a bunch of bytes directly to the inner writer.

This method will perform the necessary padding (always with zeros) to ensure that the encoded value has an even number of bytes.

Retrieve the number of bytes written so far by this printer.

Encode and write the values of a pixel data offset table.

Encode and write a data element with a primitive value.

This method will perform the necessary padding to ensure that the encoded value is an even number of bytes. Where applicable, this will use the inner text codec for textual values. The length property of the header is ignored, the true byte length of the value in its encoded form is used instead.

👎 Deprecated since 0.5.0:

use encode_primitive_element instead

Encode and write a primitive value.

Its use is not recommended because the encoded value’s real length might not match the header’s length, leading to an inconsistent data set.

Trait Implementations

Formats the value using the given formatter. 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 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