Struct dicom_encoding::decode::basic::BigEndianBasicDecoder

source ·
pub struct BigEndianBasicDecoder;
Expand description

A basic decoder of DICOM primitive elements in big endian.

Trait Implementations§

source§

impl BasicDecode for BigEndianBasicDecoder

source§

fn endianness(&self) -> Endianness

Retrieve the source’s endianness, as expected by this decoder.
source§

fn decode_us<S>(&self, source: S) -> Result<u16>
where S: Read,

Decode an unsigned short value from the given source.
source§

fn decode_us_into<S>(&self, source: S, target: &mut [u16]) -> Result<()>
where S: Read,

Decode a sequence of unsigned shorts value from the given source into the given destination.
source§

fn decode_ul<S>(&self, source: S) -> Result<u32>
where S: Read,

Decode an unsigned long value from the given source.
source§

fn decode_ul_into<S>(&self, source: S, target: &mut [u32]) -> Result<()>
where S: Read,

Decode a sequence of unsigned long values from the given source into the given destination.
source§

fn decode_uv<S>(&self, source: S) -> Result<u64>
where S: Read,

Decode an unsigned very long value from the given source.
source§

fn decode_uv_into<S>(&self, source: S, target: &mut [u64]) -> Result<()>
where S: Read,

Decode a sequence of unsigned very long values from the given source into the given destination.
source§

fn decode_ss<S>(&self, source: S) -> Result<i16>
where S: Read,

Decode a signed short value from the given source.
source§

fn decode_ss_into<S>(&self, source: S, target: &mut [i16]) -> Result<()>
where S: Read,

Decode a sequence of signed short values from the given source into the given destination.
source§

fn decode_sl<S>(&self, source: S) -> Result<i32>
where S: Read,

Decode a signed long value from the given source.
source§

fn decode_sl_into<S>(&self, source: S, target: &mut [i32]) -> Result<()>
where S: Read,

Decode a sequence of signed long values from the given source into the given destination.
source§

fn decode_sv<S>(&self, source: S) -> Result<i64>
where S: Read,

Decode a signed very long value from the given source.
source§

fn decode_sv_into<S>(&self, source: S, target: &mut [i64]) -> Result<()>
where S: Read,

Decode a sequence of signed very long values from the given source into the given destination.
source§

fn decode_fl<S>(&self, source: S) -> Result<f32>
where S: Read,

Decode a single precision float value from the given source.
source§

fn decode_fl_into<S>(&self, source: S, target: &mut [f32]) -> Result<()>
where S: Read,

Decode a sequence of single precision float values from the given source into the given destination.
source§

fn decode_fd<S>(&self, source: S) -> Result<f64>
where S: Read,

Decode a double precision float value from the given source.
source§

fn decode_fd_into<S>(&self, source: S, target: &mut [f64]) -> Result<()>
where S: Read,

Decode a sequence of double precision float values from the given source into the given destination.
source§

fn decode_tag<S>(&self, source: S) -> Result<Tag>
where S: Read,

Decode a DICOM attribute tag from the given source.
source§

impl Clone for BigEndianBasicDecoder

source§

fn clone(&self) -> BigEndianBasicDecoder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BigEndianBasicDecoder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for BigEndianBasicDecoder

source§

fn default() -> BigEndianBasicDecoder

Returns the “default value” for a type. Read more
source§

impl Hash for BigEndianBasicDecoder

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for BigEndianBasicDecoder

source§

fn eq(&self, other: &BigEndianBasicDecoder) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for BigEndianBasicDecoder

source§

impl Eq for BigEndianBasicDecoder

source§

impl StructuralPartialEq for BigEndianBasicDecoder

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.