pub struct BigEndianBasicDecoder;
Expand description
A basic decoder of DICOM primitive elements in big endian.
Trait Implementations§
Source§impl BasicDecode for BigEndianBasicDecoder
impl BasicDecode for BigEndianBasicDecoder
Source§fn endianness(&self) -> Endianness
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
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,
fn decode_fd<S>(&self, source: S) -> Result<f64>where
S: Read,
Decode a double precision float value from the given source.
Source§impl Clone for BigEndianBasicDecoder
impl Clone for BigEndianBasicDecoder
Source§fn clone(&self) -> BigEndianBasicDecoder
fn clone(&self) -> BigEndianBasicDecoder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BigEndianBasicDecoder
impl Debug for BigEndianBasicDecoder
Source§impl Default for BigEndianBasicDecoder
impl Default for BigEndianBasicDecoder
Source§fn default() -> BigEndianBasicDecoder
fn default() -> BigEndianBasicDecoder
Returns the “default value” for a type. Read more
Source§impl Hash for BigEndianBasicDecoder
impl Hash for BigEndianBasicDecoder
Source§impl PartialEq for BigEndianBasicDecoder
impl PartialEq for BigEndianBasicDecoder
impl Copy for BigEndianBasicDecoder
impl Eq for BigEndianBasicDecoder
impl StructuralPartialEq for BigEndianBasicDecoder
Auto Trait Implementations§
impl Freeze for BigEndianBasicDecoder
impl RefUnwindSafe for BigEndianBasicDecoder
impl Send for BigEndianBasicDecoder
impl Sync for BigEndianBasicDecoder
impl Unpin for BigEndianBasicDecoder
impl UnwindSafe for BigEndianBasicDecoder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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