pub enum NeverAdapter {}
Expand description
An immaterial type representing a data set adapter which is never required, and as such is never instantiated. Most transfer syntaxes use this, as they do not have to adapt readers and writers for encoding and decoding data sets. The main exception is in the family of Deflated Explicit VR Little Endian transfer syntaxes.
Trait Implementations§
Source§impl Clone for NeverAdapter
impl Clone for NeverAdapter
Source§fn clone(&self) -> NeverAdapter
fn clone(&self) -> NeverAdapter
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<R, W> DataRWAdapter<R, W> for NeverAdapter
impl<R, W> DataRWAdapter<R, W> for NeverAdapter
Source§fn adapt_reader(&self, _reader: R) -> Self::Readerwhere
R: Read,
fn adapt_reader(&self, _reader: R) -> Self::Readerwhere
R: Read,
Adapt a byte reader.
Source§fn adapt_writer(&self, _writer: W) -> Self::Writerwhere
W: Write,
fn adapt_writer(&self, _writer: W) -> Self::Writerwhere
W: Write,
Adapt a byte writer.
Source§impl Debug for NeverAdapter
impl Debug for NeverAdapter
Source§impl Hash for NeverAdapter
impl Hash for NeverAdapter
Source§impl Ord for NeverAdapter
impl Ord for NeverAdapter
Source§fn cmp(&self, other: &NeverAdapter) -> Ordering
fn cmp(&self, other: &NeverAdapter) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NeverAdapter
impl PartialEq for NeverAdapter
Source§impl PartialOrd for NeverAdapter
impl PartialOrd for NeverAdapter
Source§impl PixelDataReader for NeverAdapter
impl PixelDataReader for NeverAdapter
Source§fn decode(
&self,
_src: &dyn PixelDataObject,
_dst: &mut Vec<u8>,
) -> DecodeResult<()>
fn decode( &self, _src: &dyn PixelDataObject, _dst: &mut Vec<u8>, ) -> DecodeResult<()>
Decode the given DICOM object
containing encapsulated pixel data
into native pixel data as a byte stream in little endian,
appending these bytes to the given vector
dst
. Read moreSource§fn decode_frame(
&self,
_src: &dyn PixelDataObject,
_frame: u32,
_dst: &mut Vec<u8>,
) -> DecodeResult<()>
fn decode_frame( &self, _src: &dyn PixelDataObject, _frame: u32, _dst: &mut Vec<u8>, ) -> DecodeResult<()>
Decode the given DICOM object
containing encapsulated pixel data
into native pixel data of a single frame
as a byte stream in little endian,
appending these bytes to the given vector
dst
. Read moreSource§impl PixelDataWriter for NeverAdapter
impl PixelDataWriter for NeverAdapter
Source§fn encode(
&self,
_src: &dyn PixelDataObject,
_options: EncodeOptions,
_dst: &mut Vec<Vec<u8>>,
_offset_table: &mut Vec<u32>,
) -> EncodeResult<Vec<AttributeOp>>
fn encode( &self, _src: &dyn PixelDataObject, _options: EncodeOptions, _dst: &mut Vec<Vec<u8>>, _offset_table: &mut Vec<u32>, ) -> EncodeResult<Vec<AttributeOp>>
Encode a DICOM object’s image into the format supported by this adapter,
writing a byte stream of pixel data fragment values
to the given vector
dst
and the offsets to each decoded frame into offset_table
. Read moreSource§fn encode_frame(
&self,
_src: &dyn PixelDataObject,
_frame: u32,
_options: EncodeOptions,
_dst: &mut Vec<u8>,
) -> EncodeResult<Vec<AttributeOp>>
fn encode_frame( &self, _src: &dyn PixelDataObject, _frame: u32, _options: EncodeOptions, _dst: &mut Vec<u8>, ) -> EncodeResult<Vec<AttributeOp>>
Encode a single frame of a DICOM object’s image
into the format supported by this adapter,
by writing a byte stream of pixel data values
into the given destination.
The bytes written comprise a single pixel data fragment
in its entirety. Read more
impl Copy for NeverAdapter
impl Eq for NeverAdapter
impl StructuralPartialEq for NeverAdapter
Auto Trait Implementations§
impl Freeze for NeverAdapter
impl RefUnwindSafe for NeverAdapter
impl Send for NeverAdapter
impl Sync for NeverAdapter
impl Unpin for NeverAdapter
impl UnwindSafe for NeverAdapter
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